Parcourir la source

Disabled page action for all but http(s)

master
Said Achmiz il y a 6 ans
Parent
révision
db2f3e391c
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1
    1
      background.js

+ 1
- 1
background.js Voir le fichier

@@ -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() ]
}]);

Chargement…
Annuler
Enregistrer