从弹出窗口打开时,修改内部带有扩展名html文件的选项卡

问题描述 投票:0回答:1

我正在尝试将DOM附加到从popup.js打开的自我扩展文件中。假设我有一个名为temp.html的chrome扩展文件中存在的文件,在执行popup.js的某个时刻,我使用chrome.tabs.create打开这个文件,然后我想在这个html文件中添加一个DOM。

无论如何我可以从popup.js这样做吗?

Extension files:

1-manifest.json
2-functions
    functions.js
    domToTables.js
3-libs
    jquery-3.3.1.min.js
    bootstrap-4.2.1-dist
4-myTables
    stylesheet.css
    *temp.html* \\this file
5-popup
    stylesheet.css
    index.html
    popup.js
6-background.js
7-content.js
javascript google-chrome-extension
1个回答
2
投票

虽然您可以使用chrome.extension.getViews直接访问在新选项卡中打开的自己扩展页面的DOM,但它需要在后台打开选项卡(chrome.tabs.create参数中的active:false)这是不可靠的,因为另一个扩展名可以强制激活选项卡,从而关闭弹出窗口,这会立即终止弹出脚本。

正确的方法是将数据传递到另一个页面并处理其脚本中的数据,该脚本通过标准<script src="other-page.js"></script>加载到该页面html中。

1.通过HTML5 localStorage +同步访问共享

如果您需要在第一个绘制的帧之前在其他页面内加载期间访问数据,请使用例如选择明/暗主题。您必须JSON'ify非字符串类型,如对象或数组。

缺点:如果您在扩展程序的其他页面中观察到DOM 'storage'事件,可能会很慢。

popup.js:

localStorage.sharedData = JSON.stringify({foo: 123, bar: [1, 2, 3], theme: 'dark'});
chrome.tabs.create({url: 'other-page.html'});

其他-page.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.通过URL参数+同步访问共享

如果您需要在第一个绘制的帧之前在其他页面内加载期间访问数据,请使用例如选择明/暗主题。您必须JSON'ify非字符串类型,如对象或数组。

缺点:地址栏中有一个长URL。

popup.js:

chrome.tabs.create({
  url: 'other-page.html?data=' + encodeURIComponent(JSON.stringify({foo: [1, 2, 3]})),
});

其他-page.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.通过后台页面共享全局变量+同步访问

如果您需要在第一个绘制的帧之前在其他页面内加载期间访问数据,请使用例如选择明/暗主题。您必须JSON'ify非字符串类型,如对象或数组。

缺点1:需要背景页面。

缺点2:需要通过使用JSON'ification或自定义的深度克隆来深度克隆对象,该深度克隆适用于跨窗口上下文(AFAIK没有流行的deepClone实现此条件),特别是它应该使用目标窗口的引用对象构造函数。

manifest.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'});
});

其他-page.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.通过后台页面消息分享两个跃点

如果您需要在后台页面中执行一系列操作,请使用此选项打开选项卡只是第一步。例如,我们需要在第二步中传递数据。

需要后台页面,因为弹出窗口将关闭,当活动选项卡在显示弹出窗口的同一窗口中打开时,其脚本将不再运行。有人可能认为使用active: false创建选项卡可以解决问题,但只有在用户决定安装另一个覆盖制表符打开行为的扩展名之后。你会认为你可以打开一个新窗口,但不能再保证其他扩展不会将新窗口的选项卡重新附加到现有窗口中,从而关闭弹出窗口。

缺点1:在Chrome中,数据在内部是JSON化的,因此它会破坏所有非标准类型,例如WeakMap,TypedArray,Blob等。在Firefox中,它们似乎使用结构化克隆,因此可以共享更多类型。

缺点2:我们发送两次相同的数据消息。

注意:我正在使用Mozilla's WebExtension polyfill

manifest.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,
    });
  }
});

其他-page.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>

其他-page.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.通过chrome.storage.local分享

请参阅this answer中chrome.storage.local的示例。

© www.soinside.com 2019 - 2024. All rights reserved.