首先,请注意在扩展中传递的消息是 JSON 序列化的。消息中不包含不可序列化的类型,例如函数。
在内容脚本中,您必须将消息传递到后台页面,因为没有直接访问其他选项卡的方法。
// Example: Send a string. Often, you send an object, which includes
// additional information, eg {method:'userdefined', data:'thevalue'}
chrome.extension.sendMessage(' ... message ... ');
在后台页面中,使用chrome.tabs.query
方法获取选项卡的ID。为简单起见,我对模式和 URL 进行了硬编码。以这种方式包含上一条消息中的查询值可能是一个好主意{query:{...}, data:...}
:
// background script:
chrome.extension.onMessage.addListener(function(details) {
chrome.tabs.query({
title: "title pattern",
url: "http://domain/*urlpattern*"
}, function(result) {
// result is an array of tab.Tabs
if (result.length === 1) { // There's exactely one tab matching the query.
var tab = result[0];
// details.message holds the original message
chrome.tabs.sendMessage(tab.id, details.message);
}
});
});
chrome.tabs.sendMessage
用于将原始数据传递到不同的选项卡。
备注:在示例中,我仅在查询产生一个唯一选项卡时传递消息。当唯一性不是先决条件时,只需遍历所有生成的选项卡,使用result.forEach
or:
for (var i=0, tab; i<result.length; i++) {
tab = results[i];
...
}