弹出窗口虽然是扩展页面,但不是背景页面。只有在打开时才能访问。因此,根据其他信息更改弹出页面的最佳方式是从弹出窗口本身启动消息。我认为您正在使用内容脚本在页面上获取某种信息,然后根据该信息更改弹出窗口。您可以准备数据并onMessage
在内容脚本本身中有一个侦听器,或者您可以将信息传递到后台页面并从弹出窗口中请求它。第一个例子是:
内容脚本
...
//assume that you already have the info you want stored in 'info'
chrome.runtime.onMessage.addListener(function(message,sender,sendResponse){
sendResponse(info);
});
弹出窗口
chrome.tabs.query({'active': true,'currentWindow':true},function(tab){
chrome.tabs.sendMessage(tab[0].id,"stuff", function(response){
//assuming that info was html markup then you could do
document.body.innerhtml = response;
//I personally wouldn't do it like this but you get the idea
});
});
正如这里所要求的,它使用背景页面作为中介:
内容脚本
// same assumption that info is already defined as the info you want
chrome.runtime.sendMessage({'method':'setInfo','info':info});
背景页面
var info;
chrome.runtime.onMessage(function(message,sender,sendResponse){
// When we get a message from the content script
if(message.method == 'setInfo')
info = message.info;
// When we get a message from the popup
else if(message.method == 'getInfo')
sendResponse(info);
});
弹出窗口
chrome.runtime.sendMessage({'method':'getInfo'},function(response){
//response is now the info collected by the content script.
console.log(response);
});
当然,您可以以比简单的全局变量更好的方式将信息存储在后台页面中。一种好方法是使用storage API
.