diff options
author | Simon Brazell <simon.brazell@gmail.com> | 2019-09-20 20:45:58 +1000 |
---|---|---|
committer | Simon Brazell <simon.brazell@gmail.com> | 2019-09-20 20:45:58 +1000 |
commit | 565d1203429c6291fe35992811303b6b3254e8cf (patch) | |
tree | e196653cf79c68be8804d096b94f9f7394a25dc3 /manifest.json | |
download | libredirect-565d1203429c6291fe35992811303b6b3254e8cf.zip |
Initial commit
Diffstat (limited to 'manifest.json')
-rw-r--r-- | manifest.json | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/manifest.json b/manifest.json new file mode 100644 index 00000000..80237135 --- /dev/null +++ b/manifest.json @@ -0,0 +1,27 @@ +{ + "name": "Privacy Redirect", + "description": "Redirects Twitter & Youtube requests to privacy friendly alternatives (Nitter & Invideus).", + "version": "1.0.0", + "manifest_version": 2, + "background": { + "scripts": [ + "background.js" + ] + }, + "icons": { + "48": "img/icon48.png", + "128": "img/icon128.png" + }, + "permissions": [ + "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/" + ] +} \ No newline at end of file |