IT博客汇
首页
精华
技术
设计
资讯
扯淡
权利声明
登录
注册
Chrome 扩展 background 与content_script 之间通信
testcs_dn
发表于
2024-06-07 08:43:43
love
0
content_script 向 background 发消息要用:chrome.runtime.sendMessage。background 向 content_script 发消息要用:chrome.tabs.sendMessage。content_script 接收消息用:chrome.runtime.onMessage.addListener。background 接收消息:chrome.runtime.onMessage.addListener。这一句很关键,接收到了就要给一个回应;