blob: 76e51b6e4e9dba190671761fac3c00d7a031bc23 [file] [log] [blame]
chrome.runtime.onInstalled.addListener(function () {
chrome.action.disable();
chrome.declarativeContent.onPageChanged.removeRules(undefined, function () {
chrome.declarativeContent.onPageChanged.addRules([
{
conditions: [
new chrome.declarativeContent.PageStateMatcher({
pageUrl: { schemes: ["http", "https"] },
}),
],
actions: [new chrome.declarativeContent.ShowAction()],
},
]);
});
});