我想其中一个消息/可变流过每个以下步骤来获得一个简单的谷歌Chrome扩展的工作...
- DOM内容(来自特定HTML标签)
- Contentscript.js
- Background.js
- Popup.js
- Popup.html
我已经想通了如何将消息/变量发送到 Background.js 和它在一个方向( Background.js -> Popup.js
或Background.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
,其很难破译。 一个简单的,可重复使用的例子是,在学习过程中非常有用,因为我敢肯定,这是一个常见的问题。