我将以下代码用于chrome扩展,以便在特定主机上处于活动状态。
chrome.declarativeContent.onPageChanged.removeRules(undefined, function() {
chrome.declarativeContent.onPageChanged.addRules([{
conditions: [new chrome.declarativeContent.PageStateMatcher({
pageUrl: {hostEquals: 'www.google.com'},
})],
actions: [new chrome.declarativeContent.Sho``wPageAction()]
}]);
});
我希望它对所有主机都有效。
答案 0 :(得分:0)
您可以使用hostContains: '.'
激活所有主机的扩展名。我已经测试过了,它适用于所有主机。