Chrome扩展 - 从DOM到Popup.js消息传递(Chrome Extension - Fr

2019-09-01 16:00发布

我想其中一个消息/可变流过每个以下步骤来获得一个简单的谷歌Chrome扩展的工作...

  1. DOM内容(来自特定HTML标签)
  2. Contentscript.js
  3. Background.js
  4. Popup.js
  5. Popup.html

我已经想通了如何将消息/变量发送 Background.js 它在一个方向( Background.js -> Popup.jsBackground.js -> Contentscript.js ),但通过所有不能让它3成功( Contentscript.js -> Background.js -> Popup.js )。 以下是我的演示文件。

他们

<h1 class="name">Joe Blow</h1>

Content.js

fromDOM = $('h1.name').text();

chrome.runtime.sendMessage({contentscript: "from: contentscript.js", title: fromDOM}, function(b) {
    console.log('on: contentscript.js === ' + b.background);
});

Background.js

chrome.tabs.getSelected(null, function(tab) {
    chrome.extension.onMessage.addListener(function(msg, sender, sendResponse) {

        sendResponse({background: "from: background.js"});
        console.log('on: background.js === ' + msg.title);

    });
});

Popup.js

chrome.extension.sendMessage({pop: "from: popup.js"}, function(b){
    console.log('on: popup.js === ' + b.background);

    $('.output').text(b.background);
});

Popup.html

<html>
<head>
  <script src="jquery.js"></script>
  <script src="popup.js"></script>
</head>
<body>

<p class="output"></p>

</body>
</html>

的manifest.json

{   
"name": "Hello World",   
"version": "1.0",
"manifest_version": 2,
"description": "My first Chrome extension.",
"background" : {
    "scripts": ["background.js"]
},
"permissions": [
    "tabs"
],
"browser_action": {     
    "default_icon": "icon.png",
    "default_popup": "popup.html"   
},
"content_scripts": [
    {
      "matches": ["http://*/*"],
      "js": ["jquery.js","contentscript.js"],
      "run_at": "document_end"
    }
]

}

我有一种感觉,我知道跳闸起来是什么,但文档严重缺少manifest_version: 2 ,其很难破译。 一个简单的,可重复使用的例子是,在学习过程中非常有用,因为我敢肯定,这是一个常见的问题。

Answer 1:

好吧,在你的代码改变一些事情应该使其工作就像你想要的。 并非所有的变化,我要作是必要的,但这只是我可能做到这一点。

内容脚本

var fromDOM = $('h1.name').text();
chrome.runtime.sendMessage({method:'setTitle',title:fromDOM});

背景

var title;
chrome.runtime.onMessage.addListener(function(message,sender,sendResponse){
  if(message.method == 'setTitle')
    title = message.title;
  else if(message.method == 'getTitle')
    sendResponse(title);
});

Popup.js

chrome.runtime.sendMessage({method:'getTitle'}, function(response){
  $('.output').text(response);
});


文章来源: Chrome Extension - From the DOM to Popup.js message passing