虽然您可以使用 chrome.extension.getViews(如果使用 window.open 甚至更简单)直接访问在新选项卡/窗口中打开的您自己的扩展程序页面的 DOM,但这是 UI 原始时代的方法,所以它如果您打开的页面使用演示框架,则不会工作。此外,当从弹出窗口使用时,您必须首先在后台打开选项卡(active:false
在 chrome.tabs.create 的参数中),否则弹出窗口将自动关闭,因此不会运行进一步的代码,不幸的是,这仍然不可靠,因为另一个扩展可能会强制激活选项卡。
可靠/正确的方法是将数据传递到另一个页面,并让它处理通过标准<script src="other-page.js"></script>
.
1. MV2:HTML5 localStorage + 同步访问
如果您需要在第一个绘制框架之前在另一个页面内加载期间访问数据,例如选择浅色/深色主题,请使用。
缺点:大量数据可能会显着降低预算设备的速度,并且您必须对非字符串类型(例如对象或数组)进行 JSON 化。
popup.js:
localStorage.sharedData = JSON.stringify({foo: 123, bar: [1, 2, 3], theme: 'dark'});
chrome.tabs.create({url: 'other-page.html'});
其他页面.js:
let sharedData;
try {
sharedData = JSON.parse(localStorage.sharedData);
if (sharedData.theme === 'dark') {
document.documentElement.style = 'background: #000; color: #aaa;';
}
} catch (e) {}
delete localStorage.sharedData;
2、MV2/MV3:URL参数+同步访问
如果您需要在第一个绘制框架之前在另一个页面内加载期间访问数据,例如选择浅色/深色主题,请使用。
缺点:地址栏中的 url 很长,您必须对非字符串类型(例如对象或数组)进行 JSON 化。
popup.js:
chrome.tabs.create({
url: 'other-page.html?data=' + encodeURIComponent(JSON.stringify({foo: [1, 2, 3]})),
});
其他页面.js:
let sharedData;
try {
sharedData = JSON.parse(new URLSearchParams(location.search).get('data'));
} catch (e) {}
// simplify the displayed URL in the address bar
history.replace({}, document.title, location.origin + location.pathname);
3. MV2:后台脚本的全局变量+同步访问
如果您需要在第一个绘制框架之前在另一个页面内加载期间访问数据,例如选择浅色/深色主题,请使用。
缺点一:需要后台页面。
缺点 2:需要使用 JSON.parse(JSON.stringify(data)) 或自定义 deepClone 对对象进行深度克隆,该深度克隆适用于跨窗口上下文,因为没有一个流行的 deepClone 实现这样做 AFAIK:特别是它应该使用window
对象构造函数的目标引用。
清单.json:
"background": {
"scripts": ["bg.js"],
"persistent": false
}
popup.js:
// ensure the non-persistent background page is loaded
chrome.runtime.getBackgroundPage(bg => {
// using JSON'ification to avoid dead cross-window references.
bg.sharedData = JSON.stringify({foo: 123, bar: [1, 2, 3], theme: 'dark'});
chrome.tabs.create({url: 'other-page.html'});
});
其他页面.js:
// if this tab was reloaded the background page may be unloaded and the variable is lost
// but we were saving a copy in HTML5 sessionStorage!
let sharedData = sessionStorage.sharedData;
if (!sharedData) {
const bg = chrome.extension.getBackgroundPage();
sharedData = bg && bg.sharedData;
if (sharedData) {
sessionStorage.sharedData = sharedData;
}
}
// using JSON'ification to avoid dead cross-window references.
try {
sharedData = JSON.parse(sharedData);
} catch (e) {}
4. MV2/MV3:后台脚本在两跳中中继消息
如果您需要在后台页面中执行一系列操作,其中打开选项卡只是第一步,请使用。比如我们需要在第二步传递数据。
需要后台页面是因为当活动选项卡在显示弹出窗口的同一窗口中打开时,弹出窗口将关闭并且其脚本将不再运行。有人可能认为创建一个选项卡active: false
可以解决问题,但只有在用户决定安装另一个覆盖选项卡打开行为的扩展程序之前。您会认为您可以打开一个新窗口,但同样不能保证其他扩展程序不会将新窗口的选项卡重新附加到现有窗口中,从而关闭您的弹出窗口。
缺点 1:在 Chrome 中,数据在内部是 JSON 化的,因此它会破坏所有非标准类型,例如 WeakMap、TypedArray、Blob 等。在 Firefox 中,它们似乎使用结构化克隆,因此可以共享更多类型。
缺点 2:我们发送了两次相同的数据消息。
注意:我使用的是Mozilla 的 WebExtension polyfill。
清单.json:
"background": {
"scripts": [
"browser-polyfill.min.js",
"bg.js"
],
"persistent": false
}
popup.js:
chrome.runtime.sendMessage({
action: 'openTab',
url: '/other-page.html',
data: {foo: 123, bar: [1, 2, 3], theme: 'dark'},
});
bg.js:
function onTabLoaded(tabId) {
return new Promise(resolve => {
browser.tabs.onUpdated.addListener(function onUpdated(id, change) {
if (id === tabId && change.status === 'complete') {
browser.tabs.onUpdated.removeListener(onUpdated);
resolve();
}
});
});
}
browser.runtime.onMessage.addListener(async (msg = {}, sender) => {
if (msg.action === 'openTab') {
const tab = await browser.tabs.create({url: msg.url});
await onTabLoaded(tab.id);
await browser.tabs.sendMessage(tab.id, {
action: 'setData',
data: msg.data,
});
}
});
其他页面.html:
<!doctype html>
<p id="text"></p>
<!-- scripts at the end of the page run when DOM is ready -->
<script src="other-page.js"></script>
其他页面.js:
chrome.runtime.onMessage.addListener((msg, sender) => {
if (msg.action === 'setData') {
console.log(msg.data);
document.getElementById('text').textContent = JSON.stringify(msg.data, null, ' ');
// you can use msg.data only inside this callback
// and you can save it in a global variable to use in the code
// that's guaranteed to run at a later point in time
}
});
5. MV2/MV3: chrome.storage.local
请参阅此答案中的chrome.storage.local 示例。