I need to call a method in background.js from popup.js . Example :
Background js:
function abc(){
}
Popup js :
abc(); //call from here
I need to call a method in background.js from popup.js . Example :
Background js:
function abc(){
}
Popup js :
abc(); //call from here
In popup.js :
var BGPAGE = chrome.extension.getBackgroundPage();
BGPAGE.abc();
Also messaging can be used as described here