0

我希望有人可以帮助我在 Firefox 57 中使用 webextensions。我正在尝试将插件从 Add-on SDK 移植到 Webextension。

我所拥有的是以下代码

包.json

{
  "name": "myPlugin",
  "title": "Grafic",
  "id": "myID",
  "main": "lib/main.js",
  "description": "myDescription",
  "author": "",
  "license": "MPL 2.0",
  "version": "1.0.1"
}

和 main.js

4

2 回答 2

2

browser.tabs.getCurrent 确实仅适用于后台脚本。你想要的只是window.location.href。

于 2018-01-03T08:53:29.573 回答
1

要在页面变为活动状态时获取其 URL,您可以使用:

document.addEventListener("visibilitychange", function () {
  if (!document.hidden) {
      console.log('URL: ' + location.href);
  }
}, false);
于 2018-01-03T08:54:32.293 回答