I am trying to send a message from background.js
to content.js
using the following code:
Background
chrome.runtime.sendMessage({'method': 'test'});
Content
chrome.runtime.onMessage.addListener(function(message,sender,sendResponse){
if(message.method == 'test')
console.log('Got message');
});
The background message is sent when background.js
receives a specific message from popup.js
which occurs on a click event. So the user clicks a button in the popup and a message is sent to background and then to content.
I have a feeling my problem is something to do with the fact that when the button is clicked in the popup (which is a separate tab), the content script does not receive it because it is not the current active tab.
Please help me out.