diff options
author | SimonBrazell <simon@brazell.com.au> | 2020-07-16 09:59:14 +1000 |
---|---|---|
committer | SimonBrazell <simon@brazell.com.au> | 2020-07-16 09:59:14 +1000 |
commit | 7ba890045e03808321904f0278015744ef16d377 (patch) | |
tree | b8dcb551ece14eac5ac86939eebffb17c7d12d28 /manifest.json | |
parent | Merge branch 'ms-edge' (diff) | |
download | libredirect-7ba890045e03808321904f0278015744ef16d377.zip |
Closes #74 - Option to manually override theme.
Diffstat (limited to 'manifest.json')
-rw-r--r-- | manifest.json | 23 |
1 files changed, 6 insertions, 17 deletions
diff --git a/manifest.json b/manifest.json index 41f04696..1e408456 100644 --- a/manifest.json +++ b/manifest.json @@ -1,12 +1,10 @@ { "name": "__MSG_extensionName__", "description": "__MSG_extensionDescription__", - "version": "1.1.36", + "version": "1.1.37", "manifest_version": 2, "background": { - "scripts": [ - "background.js" - ], + "scripts": ["background.js"], "persistent": true }, "default_locale": "en", @@ -16,12 +14,7 @@ "48": "assets/images/icon48.png", "128": "assets/images/icon128.png" }, - "permissions": [ - "storage", - "webRequest", - "webRequestBlocking", - "<all_urls>" - ], + "permissions": ["storage", "webRequest", "webRequestBlocking", "<all_urls>"], "browser_action": { "default_title": "Privacy Redirect", "default_popup": "pages/popup/popup.html", @@ -41,9 +34,7 @@ "*://pbs.twimg.com/*", "*://video.twimg.com/*" ], - "js": [ - "assets/javascript/remove-twitter-sw.js" - ], + "js": ["assets/javascript/remove-twitter-sw.js"], "run_at": "document_start" }, { @@ -64,9 +55,7 @@ "*://c7hqkpkpemu6e7emz5b4vyz7idjgdvgaaa3dyimmeojqbgpea3xqjoid.onion/*", "*://mfqczy4mysscub2s.onio/*n" ], - "js": [ - "assets/javascript/persist-invidious-prefs.js" - ], + "js": ["assets/javascript/persist-invidious-prefs.js"], "run_at": "document_start" } ], @@ -79,4 +68,4 @@ "id": "{b7f9d2cd-d772-4302-8c3f-eb941af36f76}" } } -} \ No newline at end of file +} |