privacy-redirect/manifest.json

49 lines
1.2 KiB
JSON
Raw Normal View History

2019-09-20 12:45:58 +02:00
{
"name": "Privacy Redirect",
2019-09-25 02:03:24 +02:00
"description": "Redirects Twitter & Youtube requests to privacy friendly alternatives (Nitter & Invidious).",
2019-10-30 06:48:38 +01:00
"version": "1.1.2",
2019-09-20 12:45:58 +02:00
"manifest_version": 2,
"background": {
"scripts": [
"background.js"
2019-10-07 13:59:31 +02:00
],
"persistent": true
2019-09-20 12:45:58 +02:00
},
"icons": {
2019-09-29 15:04:24 +02:00
"16": "images/icon16.png",
"32": "images/icon32.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
2019-09-20 12:45:58 +02:00
},
"permissions": [
2019-09-29 15:04:24 +02:00
"storage",
2019-09-20 12:45:58 +02:00
"webRequest",
"webRequestBlocking",
"*://twitter.com/*",
"*://www.twitter.com/*",
"*://mobile.twitter.com/*",
"*://youtube.com/*",
"*://www.youtube.com/*",
"*://youtube-nocookie.com/*",
"*://www.youtube-nocookie.com/*",
"*://m.youtube.com/"
2019-09-29 15:04:24 +02:00
],
"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
2019-10-07 13:59:31 +02:00
},
"browser_specific_settings": {
"gecko": {
"id": "{b7f9d2cd-d772-4302-8c3f-eb941af36f76}"
}
2019-09-29 15:04:24 +02:00
}
2019-09-20 12:45:58 +02:00
}