この問題を解決しようと広範囲にグーグルで検索してきましたが、解決策が見つからないようです。Chrome 拡張機能でリスナーと送信者を設定するという簡単なタスクを実行しようとしています。
私のマニフェスト
{
"manifest_version": 2,
"name": "my app",
"description": "text",
"version": "0.1",
"background":{
"scripts":["background.js"]
},
"content_scripts": [
{
// http://developer.chrome.com/extensions/match_patterns.html
"matches": ["http://myurl.com/*"],
"js": ["jquery-1.9.1.min.js", "myapp.js"],
"all_frames": true
}
],
"browser_action": {
"default_icon": "/icons/icon-mini.png",
"default_popup": "popup.html"
}
}
私のバックグラウンドJSで
chrome.tabs.getSelected(null, function(tab) {
chrome.tabs.sendMessage(tab.id, {greeting: "hello"}, function(response) {
console.log(response.farewell);
});
});
私の popup.js では (coffeescript によってレンダリングされます。奇妙な構文を許してください)
(function() {
$(function() {});
chrome.extension.onMessage.addListener(function(request, sender, sendResponse) {
if (console.log(sender.tab)) {
"from a content script:" + sender.tab.url;
} else {
"from the extension";
}
if (request.greeting === "hello") {
return sendResponse({
farewell: "goodbye"
});
}
});
}).call(this);
私のmyapp.jsで
chrome.extension.sendMessage({
greeting: "hello"
}, function(response) {
return console.log(response.farewell);
});
私はチュートリアルに従いました。なぜこれが機能しないのかわかりません。私は JS にかなり慣れていますが、なぜこれが奇妙な動作をしているのかはよくわかりません。どんな助けでも大歓迎です!