Mozilla Firefox附加组件Android-页面操作不起作用

时间:2018-08-12 10:15:07

标签: javascript android firefox mozilla add-on

我已经在这个问题上工作了几个小时,似乎找不到关于如何在android上实现页面操作的任何好资源。 Differences_between_desktop_and_Android

我将我的应用程序连接到firefox中的Web调试器,没有收到任何错误。我尝试手动调用一些函数,但未定义任何函数。我可能做错了,但是它可以在PC版的Firefox上运行。

我在BG脚本的顶部创建了一些上下文菜单项。我不确定这是否会影响android上脚本的执行。

ReferenceError: browser is not defined[Learn More] debugger eval code:1:1 

下面是创建Page Action的代码,该代码包含在我的Background.js.

/* *********** */
/* Page Action */
/* *********** */
const TITLE_APPLY = "Stack Open";
const TITLE_REMOVE = "Stack Closed";
const APPLICABLE_PROTOCOLS = ["http:", "https:"];

/*
Based on the current title, Update the page action's title and icon to reflect its state.
*/
function toggleT(tab) {

  function gotTitle(title) {
    if (title === TITLE_APPLY) {
      console.log(tab.id);
      //browser.pageAction.setIcon({tabId: tab.id, path: "pressed.svg"});
      browser.pageAction.setTitle({tabId: tab.id, title: TITLE_REMOVE});
    } else {
      //browser.pageAction.setIcon({tabId: tab.id, path: "nPressed.svg"});
      browser.pageAction.setTitle({tabId: tab.id, title: TITLE_APPLY});
    }
  }

  var gettingTitle = browser.pageAction.getTitle({tabId: tab.id});
  gettingTitle.then(gotTitle);
}

/*
Returns true only if the URL's protocol is in APPLICABLE_PROTOCOLS.
*/
function protocolIsApplicable(url) {
  var anchor =  document.createElement('a');
  anchor.href = url;
  return APPLICABLE_PROTOCOLS.includes(anchor.protocol);
}

/*
Initialize the page action: set icon and title, then show.
Only operates on tabs whose URL's protocol is applicable.
*/
function initializePageAction(tab) {
  if (protocolIsApplicable(tab.url)) {
    browser.pageAction.setIcon({tabId: tab.id, path: "../books.png"});
    browser.pageAction.setTitle({tabId: tab.id, title: TITLE_APPLY});
    browser.pageAction.show(tab.id);
  }
}

/*
When first loaded, initialize the page action for all tabs.
*/
var gettingAllTabs = browser.tabs.query({currentWindow: true, active: true});
gettingAllTabs.then((tabs) => {
  for (let tab of tabs) {
    initializePageAction(tab);
  }
});

/*
Each time a tab is updated, reset the page action for that tab.
*/
browser.tabs.onUpdated.addListener((id, changeInfo, tab) => {
  initializePageAction(tab);
});

/*
Toggle title when the page action is clicked.
*/
browser.pageAction.onClicked.addListener(toggleT);

1 个答案:

答案 0 :(得分:0)

我再次阅读了文档以及其他几页。浏览器操作和页面操作会在新标签页中打开default.html,因此无需在Android上使用页面操作。另外,我BG脚本顶部的上下文菜单项也导致BG脚本无法在Android上运行。

-问题已解决。