diff options
author | Simon Brazell <simon.brazell@gmail.com> | 2019-10-07 23:01:42 +1100 |
---|---|---|
committer | Simon Brazell <simon.brazell@gmail.com> | 2019-10-07 23:01:42 +1100 |
commit | 29f6713cf55895da8e272a3629eec0b0b65db8ae (patch) | |
tree | d495be3bdbe5d580253eecc1e4c4ebdeb876ddde /manifest.json | |
parent | Fix spelling mistakes, add more icon files. (diff) | |
parent | Complete options & popup menus (diff) | |
download | libredirect-29f6713cf55895da8e272a3629eec0b0b65db8ae.zip |
Merge branch 'options'
Diffstat (limited to 'manifest.json')
-rw-r--r-- | manifest.json | 34 |
1 files changed, 27 insertions, 7 deletions
diff --git a/manifest.json b/manifest.json index b73bf658..d2c20b0b 100644 --- a/manifest.json +++ b/manifest.json @@ -1,20 +1,22 @@ { "name": "Privacy Redirect", "description": "Redirects Twitter & Youtube requests to privacy friendly alternatives (Nitter & Invidious).", - "version": "1.0.1", + "version": "1.1.1", "manifest_version": 2, "background": { "scripts": [ "background.js" - ] + ], + "persistent": true }, "icons": { - "16": "img/icon16.png", - "32": "img/icon32.png", - "48": "img/icon48.png", - "128": "img/icon128.png" + "16": "images/icon16.png", + "32": "images/icon32.png", + "48": "images/icon48.png", + "128": "images/icon128.png" }, "permissions": [ + "storage", "webRequest", "webRequestBlocking", "*://twitter.com/*", @@ -25,5 +27,23 @@ "*://youtube-nocookie.com/*", "*://www.youtube-nocookie.com/*", "*://m.youtube.com/" - ] + ], + "browser_action": { + "default_popup": "pages/popup/popup.html", + "default_icon": { + "16": "images/icon16.png", + "32": "images/icon32.png", + "48": "images/icon48.png", + "128": "images/icon128.png" + } + }, + "options_ui": { + "page": "pages/options/options.html", + "open_in_tab": false + }, + "browser_specific_settings": { + "gecko": { + "id": "{b7f9d2cd-d772-4302-8c3f-eb941af36f76}" + } + } } \ No newline at end of file |