Chrome 扩展 消息传递Message

发布于 2022-09-02 00:35:57 字数 1579 浏览 15 评论 0

content_scriptsbackground 传递

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);
});

走了一下 可以走通;

到反过来传递消息 就 错误不知道在哪了

backgroundcontent_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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

旧时模样 2022-09-09 00:35:57

你第三段代码贴错了还是写错了?不是应该是注册一个事件监听器吗,怎么是发送消息的代码?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文