I am a newbie to Google Chrome Extension.
I wanted to know, when should we use the background script?
"background": { "scripts": ["background.js"] }
Actually, I am developing an extension, which will display some message(via desktop notifications) at particular intervals. So I am using the setInterval() method inside the javascript file(this is not the background.js).
But it doesn't seem to work.
Can anyone please explain me.
Thanks in advance.