I am creating a chrome extension that has background, which runs every second and updates chrome.storage... and it is called artistSetter.js
. Here it is:
chrome.storage.local.get(function(items){
$.each($('#supplySong > a > span.sidebar-heading'), function(){
if ($(this).css('background-color') == 'rgb(22, 156, 217)'){
chrome.storage.local.set({"currentArtist": $(this)[0].innerText});
}
});
});
Background page is this:
setInterval(function () {
chrome.tabs.executeScript(null, {file: 'js/artistSetter.js'});
}, 1000);
The error is this:
Error in response to storage.get: ReferenceError: $ is not defined
The thing is that this is working after page refreshes. I understand, that this works because I jQuery.js
starts running. But when I click Reload
button, it stops working and I start getting the error every second. Again, after refreshing, it works. Because jQuery.js starts working.
How can I fix this? Really couldn't find a way.