Devtoolsページと複数のコンテンツスクリプトページ間の接続を確立するために、バックグラウンドページがメディエーターとして使用されます。したがって、アイデアは、からdevtools
へbackground
、からbackground
へのチャネルを持つことcontent scripts
です。これは、コンテンツスクリプトの可変的な性質を処理するために必要な一般的なメソッドexecution time
です。
devtools.js
との間の通信の参照として、次のスクリプトを使用できますcontent scripts
。
マニフェスト.json
登録済み、background
マニフェストファイルdevtools
content scripts
{
"name": "Inspected Windows Demo",
"description": "This demonstrates Inspected window API",
"devtools_page": "devtools.html",
"manifest_version": 2,
"version": "2",
"permissions": [
"experimental",
"tabs"
],
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"myscript.js"
]
}
]
}
devtools.html
devtools.js
CSPに準拠するために登録済み
<html>
<head>
<script src="devtools.js"></script>
</head>
<body></body>
</html>
devtools.js
//Created a port with background page for continous message communication
var port = chrome.extension.connect({
name: "Sample Communication" //Given a Name
});
//Posting message to background page
port.postMessage("Request Tab Data");
//Hanlde response when recieved from background page
port.onMessage.addListener(function (msg) {
console.log("Tab Data recieved is " + msg);
});
myscript.js
//Handler request from background page
chrome.extension.onMessage.addListener(function (message, sender) {
console.log("In content Script Message Recieved is " + message);
//Send needed information to background page
chrome.extension.sendMessage("My URL is" + window.location.origin);
});
background.js
//Handle request from devtools
chrome.extension.onConnect.addListener(function (port) {
port.onMessage.addListener(function (message) {
//Request a tab for sending needed information
chrome.tabs.query({
"status": "complete",
"currentWindow": true,
"url": "http://www.google.co.in/"
}, function (tabs) {
for (tab in tabs) {
//Sending Message to content scripts
chrome.tabs.sendMessage(tabs[tab].id, message);
}
});
});
//Posting back to Devtools
chrome.extension.onMessage.addListener(function (message, sender) {
port.postMessage(message);
});
});
出力
あなたはページhttp://www.google.co.in/
で受け取られているのを見ることができますdevtools
参考文献
詳細については、次のドキュメントを参照してください。