Chrome插件:浏览器后台与页面间通信
-
content.js 与 background.js和popup.js 通信和 background.js与popup.js 这些通信都用 chrome.runtime.sendMessage 这个方法
background.js和popup.js 与 content.js通信 都用 chrome.tabs.sendMessage 方法
-
C->P 或者 C->B 或者 b->p
运行下面代码
chrome.runtime.sendMessage({name:value},function(){ })
P->C B->C
运行下面代码
chrome.tabs.query({active: true, currentWindow: true}, function(tabs){ chrome.tabs.sendMessage(tabs[0].id, {name:value}, function(response) { }); })
3.接收消息都是
运行下面代码
chrome.runtime.onMessage.addListener(function(message, sender, sendResponse){ alert(JSON.stringify(message)) //这里获取消息 })
天道酬勤
本文作者:方方和圆圆
本文链接:https://www.cnblogs.com/diligenceday/p/10885860.html
版权声明:本作品采用知识共享署名-非商业性使用-禁止演绎 2.5 中国大陆许可协议进行许可。
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
2016-05-18 ES6新特性:Function函数扩展, 扩展到看不懂