Chrome拡張機能のChrome APIで内部通信でハマってしまったので備忘残す
5626 ワード
概要
Chrome拡張機能で開発するcontent.js、popup.js、background.js間の通信方法の初歩的なところにガッツリハマってしまったので備忘として残す。
イベントの定義
イベントの定義自体はcontent.jsもbackground.jsも同じ
chrome.runtime.onMessage.addListener(function (request, sender, sendResponse) {
switch(request.name) {
case "hello":
sendResponse({ text: "say hello" });
break;
case "bye":
sendResponse({ text: "say bye" });
break;
default:
break;
}
});
イベント呼び出し方
イベントの呼び出し方が対象に応じて異なる。
content.js
content.jsはタブ毎に読み込まれているためどのタブのイベントをキックするかを指定する必要がある。
具体的には以下のようにイベントをキックする必要がある。
$("#btn").on("click", () => {
chrome.tabs.query({active:true, currentWindow:true}, function(tabs){
chrome.tabs.sendMessage(tabs[0].id, { name: "hello" }, function (response) {
window.alert(response.text);
});
})
});
background.js
background.jsはブラウザで読み込まれているため、タブの指定が不要。
具体的には以下のようにイベントをキックする。
$("#btn").on("click", () => {
chrome.runtime.sendMessage({ name: "hello" }, function (response) {
window.alert(response.text);
});
});
Author And Source
この問題について(Chrome拡張機能のChrome APIで内部通信でハマってしまったので備忘残す), 我々は、より多くの情報をここで見つけました https://qiita.com/taaaaho/items/ecd433cc24290de1a53e著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .