本文作者: jsweibo
本文链接: https://jsweibo.github.io/2019/02/25/browser-runtime-sendMessage/
摘要
本文主要讲述了:
- 作用
正文
作用
从 ContentScripts 向background.scripts
发消息。
注意:当background.scripts
里没有browser.runtime.onMessage()
接受消息时,消息发送会报错。
示例:
content_script.js
1 | browser.runtime |
Chrome
注意:
- 这里的回调函数,就是
onMessage
中的sendResponse
- 如果要使用回调函数,必须在
onMessage
的回调函数中返回true
。否则会报错
示例:
content_script.js
1 | chrome.runtime.sendMessage( |
参考资料
本文作者: jsweibo
本文链接: https://jsweibo.github.io/2019/02/25/browser-runtime-sendMessage/
本文对你有帮助?请支持我
- 本文链接: https://jsweibo.github.io/2019/02/25/browser-runtime-sendMessage/
- 版权声明: 除非另有说明,否则本网站上的内容根据署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0) 进行许可。