0

我创建了一个 Firefox 扩展和 chrome 扩展。在 Chrome 中,我使用的是 background.cs,所以它只会为所有 Chrome 实例加载一次,所以如果我在后台编写简单的警报,它只会显示一次警报框。

同样的事情不适用于 Firefox,当我打开新的 Firefox 窗口时,它会一直显示警告消息。

Firefox中有类似背景的东西吗?

4

1 回答 1

0

编写一个javascript 模块或切换到附加 SDK

一个javascript模块会是这样的

this.EXPORTED_SYMBOLS = ["Helper"];

this Helper = {
  initialized: false,
  init: function() {
    if(this.initialized){
      return;
    }
    // code here is executed only the first time init() is called
    this.initialized = true;
  }
};
于 2013-02-04T10:19:41.007 回答