diff options
author | SimonBrazell <simon@brazell.com.au> | 2019-09-20 20:45:58 +1000 |
---|---|---|
committer | SimonBrazell <simon@brazell.com.au> | 2019-09-20 20:45:58 +1000 |
commit | b2e5f0c0991d0bca635d7b3cc6d95dc441933765 (patch) | |
tree | e196653cf79c68be8804d096b94f9f7394a25dc3 /manifest.json | |
download | libredirect-b2e5f0c0991d0bca635d7b3cc6d95dc441933765.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 |