mirror of
https://github.com/SimonBrazell/privacy-redirect
synced 2025-01-10 15:56:18 +01:00
43 lines
1.0 KiB
JSON
43 lines
1.0 KiB
JSON
{
|
|
"name": "Privacy Redirect",
|
|
"description": "Redirects Twitter & Youtube requests to privacy friendly alternatives (Nitter & Invidious).",
|
|
"version": "1.0.2",
|
|
"manifest_version": 2,
|
|
"background": {
|
|
"scripts": [
|
|
"background.js"
|
|
]
|
|
},
|
|
"icons": {
|
|
"16": "images/icon16.png",
|
|
"32": "images/icon32.png",
|
|
"48": "images/icon48.png",
|
|
"128": "images/icon128.png"
|
|
},
|
|
"permissions": [
|
|
"storage",
|
|
"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/"
|
|
],
|
|
"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
|
|
}
|
|
} |