Adrià Vilanova MartÃnez | d401796 | 2024-05-28 23:58:24 +0200 | [diff] [blame^] | 1 | chrome.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 | }); |