Chrome 扩展 消息传递Message
content_scripts
向 background
传递
content_scripts.js
var msg = {
type: "PD-article-information",
title : wuliuInfo,
postDate : PD(".order-row").text(),
url: document.URL
};
chrome.runtime.sendMessage(msg);
background.js
chrome.runtime.onMessage.addListener(function(request, sender, sendRequest){
if(request.type!=="PD-article-information")
return;
articleData = request;
alert(articleData.title);
});
走了一下 可以走通;
到反过来传递消息 就 错误不知道在哪了
background
向 content_script
发送事件消息
content_scripts.js
chrome.runtime.onMessage.addListener(
function(request, sender, sendResponse) {
console.log(sender.tab ?
"from a content script:" + sender.tab.url :
"from the extension");
if (request.greeting == "hello")//判断是否为要处理的消息
sendResponse({farewell: "goodbye"});
});
background.js
chrome.tabs.query(
{active: true, currentWindow: true},
function(tabs) {
chrome.tabs.sendMessage(
tabs[0].id,
{greeting: "hello"},
function(response) {
console.log(response.farewell);
});
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你第三段代码贴错了还是写错了?不是应该是注册一个事件监听器吗,怎么是发送消息的代码?