blob: ad7ac40777f9a19f8074837720e446d964379c05 [file] [log] [blame]
Adrià Vilanova Martínezd4017962024-05-28 23:58:24 +02001chrome.runtime.onInstalled.addListener(function() {
2 chrome.declarativeContent.onPageChanged.removeRules(undefined, function() {
3 chrome.declarativeContent.onPageChanged.addRules([
4 {
5 conditions: [
6 new chrome.declarativeContent.PageStateMatcher({
7 pageUrl: { schemes: ['http', 'https'] },
8 })
9 ],
10 actions: [ new chrome.declarativeContent.ShowPageAction() ]
11 }
12 ]);
13 });
14});