Procházet zdrojové kódy

Disabled page action for all but http(s)

master
Said Achmiz před 6 roky
rodič
revize
db2f3e391c
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1
    1
      background.js

+ 1
- 1
background.js Zobrazit soubor

@@ -4,7 +4,7 @@ chrome.runtime.onInstalled.addListener(() => {
chrome.declarativeContent.onPageChanged.removeRules(undefined, () => {
chrome.declarativeContent.onPageChanged.addRules([{
conditions: [ new chrome.declarativeContent.PageStateMatcher({
pageUrl: { },
pageUrl: { schemes: [ 'http', 'https' ] },
})
], actions: [ new chrome.declarativeContent.ShowPageAction() ]
}]);

Načítá se…
Zrušit
Uložit