You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910
  1. chrome.runtime.onInstalled.addListener(() => {
  2. chrome.declarativeContent.onPageChanged.removeRules(undefined, () => {
  3. chrome.declarativeContent.onPageChanged.addRules([{
  4. conditions: [ new chrome.declarativeContent.PageStateMatcher({
  5. pageUrl: { },
  6. })
  7. ], actions: [ new chrome.declarativeContent.ShowPageAction() ]
  8. }]);
  9. });
  10. });