2019-09-20 12:45:58 +02:00
|
|
|
{
|
|
|
|
"name": "Privacy Redirect",
|
2020-02-24 04:19:56 +01:00
|
|
|
"description": "Redirects Twitter, YouTube, Instagram & Google Maps requests to privacy friendly alternatives.",
|
2020-05-15 01:46:01 +02:00
|
|
|
"version": "1.1.27",
|
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",
|
2020-01-14 10:48:37 +01:00
|
|
|
"<all_urls>"
|
2019-09-29 15:04:24 +02:00
|
|
|
],
|
|
|
|
"browser_action": {
|
2020-02-24 04:19:56 +01:00
|
|
|
"default_title": "Privacy Redirect",
|
2019-09-29 15:04:24 +02:00
|
|
|
"default_popup": "pages/popup/popup.html",
|
|
|
|
"default_icon": {
|
|
|
|
"16": "images/icon16.png",
|
|
|
|
"32": "images/icon32.png",
|
|
|
|
"48": "images/icon48.png",
|
|
|
|
"128": "images/icon128.png"
|
|
|
|
}
|
|
|
|
},
|
2020-03-29 01:34:46 +01:00
|
|
|
"content_scripts": [
|
|
|
|
{
|
|
|
|
"matches": [
|
|
|
|
"*://twitter.com/*",
|
|
|
|
"*://www.twitter.com/*",
|
|
|
|
"*://mobile.twitter.com/*",
|
|
|
|
"*://pbs.twimg.com/*",
|
|
|
|
"*://video.twimg.com/*"
|
|
|
|
],
|
|
|
|
"js": [
|
2020-05-08 14:40:07 +02:00
|
|
|
"assets/remove-twitter-sw.js"
|
|
|
|
],
|
|
|
|
"run_at": "document_start"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"matches": [
|
|
|
|
"*://invidio.us/*",
|
|
|
|
"*://invidio.us/*",
|
|
|
|
"*://invidious.snopyta.org/*",
|
|
|
|
"*://invidiou.sh/*",
|
|
|
|
"*://yewtu.be/*",
|
|
|
|
"*://yt.maisputain.ovh/*",
|
|
|
|
"*://invidious.toot.koeln/*",
|
|
|
|
"*://invidious.ggc-project.de/*",
|
|
|
|
"*://invidious.toot.koeln/*",
|
|
|
|
"*://kgg2m7yk5aybusll.onion/*",
|
|
|
|
"*://axqzx4s6s54s32yentfqojs3x5i7faxza6xo3ehd4bzzsg2ii4fv2iid.onion/*",
|
|
|
|
"*://fz253lmuao3strwbfbmx46yu7acac2jz27iwtorgmbqlkurlclmancad.onion/*",
|
|
|
|
"*://qklhadlycap4cnod.onion/*",
|
|
|
|
"*://c7hqkpkpemu6e7emz5b4vyz7idjgdvgaaa3dyimmeojqbgpea3xqjoid.onion/*",
|
|
|
|
"*://mfqczy4mysscub2s.onio/*n"
|
|
|
|
],
|
|
|
|
"js": [
|
|
|
|
"assets/persist-invidious-prefs.js"
|
2020-03-29 01:34:46 +01:00
|
|
|
],
|
|
|
|
"run_at": "document_start"
|
|
|
|
}
|
|
|
|
],
|
2019-09-29 15:04:24 +02:00
|
|
|
"options_ui": {
|
|
|
|
"page": "pages/options/options.html",
|
|
|
|
"open_in_tab": false
|
2019-10-07 13:59:31 +02:00
|
|
|
},
|
2020-02-19 13:25:33 +01:00
|
|
|
"web_accessible_resources": [
|
|
|
|
"assets/iframe_api.js",
|
|
|
|
"assets/www-widgetapi.js"
|
|
|
|
],
|
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
|
|
|
}
|