sending message to chrome extension from a web page

前端 未结 5 528
遇见更好的自我
遇见更好的自我 2020-11-27 13:24

I want to send message from the console of the random web page to my chrome extension. chrome.extension.sendMessage doesn\'t seem to work.

5条回答
  •  情歌与酒
    2020-11-27 13:51

    You can switch to the JS execution context of your content script using the menu at the bottom of a page’s developer JS console, then use chrome.runtime.sendMessage and other chrome.* APIs just as you would within the content script.

    enter image description here

提交回复
热议问题