如何在隐身模式下为Chrome扩展程序启用pageAction图标?

时间:2014-08-27 20:50:15

标签: javascript google-chrome google-chrome-extension

即使选择了“在隐身模式下允许”,我的扩展程序也会以隐身模式显示,该扩展程序使用pageaction在某些网址中呈现。 background.js有以下内容。

chrome.runtime.onInstalled.addListener(function() {
  // Replace all rules ...
  chrome.declarativeContent.onPageChanged.removeRules(undefined, function() {
    // With a new rule ...
    chrome.declarativeContent.onPageChanged.addRules([
      {
        // That fires when a page's URL contains a 'g' ...
        conditions: [
          new chrome.declarativeContent.PageStateMatcher({
            pageUrl: { urlContains: 'sears' },
          })
        ],
        // And shows the extension's page action.
        actions: [ new chrome.declarativeContent.ShowPageAction() ]
      }
    ]);
  });
});

1 个答案:

答案 0 :(得分:3)

看起来像一个错误,所以我在这里报告了它:crbug.com/408326

作为解决方法,您可以通过在清单文件中添加以下内容来启用split incognito mode

"incognito": "split"

不幸的是,chrome.runtime.onInstallednot fired for extensions in incognito mode,因此当扩展程序以隐身模式运行时,您应避免使用此事件,如下所示:

if (chrome.extension.inIncognitoContext) {
    doReplaceRules();
} else {
    chrome.runtime.onInstalled.addListener(doReplaceRules);
}
function doReplaceRules() {
  chrome.declarativeContent.onPageChanged.removeRules(undefined, function() {
    // ... add rules
  });
}