Hello I'm trying to send data from content-script to webpage.
In content script I have a listener:
chrome.runtime.onMessage.addListener(function(request, sender, sendResponse) {
  sendResponse("Hello, I'm from content.js")
});From chrome console I tried sending a message and got the following error:

I googled a lot on this and most of them talk about messaging between content and background. None of them discuss messaging between content and webpage. Any help?
 
    