diff options
author | SimonBrazell <simon@brazell.com.au> | 2020-03-29 11:34:46 +1100 |
---|---|---|
committer | SimonBrazell <simon@brazell.com.au> | 2020-03-29 11:36:01 +1100 |
commit | b01ac7c9662f83506713094fc54bfa346a3ab9fe (patch) | |
tree | cf851ce4a98971a17595f64504b3b93f4c462222 /manifest.json | |
parent | Remove OS files from repo (diff) | |
download | libredirect-b01ac7c9662f83506713094fc54bfa346a3ab9fe.zip |
Proactively remove Twitter service worker
Diffstat (limited to 'manifest.json')
-rw-r--r-- | manifest.json | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/manifest.json b/manifest.json index 3d000b24..fb5605a3 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "name": "Privacy Redirect", "description": "Redirects Twitter, YouTube, Instagram & Google Maps requests to privacy friendly alternatives.", - "version": "1.1.16", + "version": "1.1.17", "manifest_version": 2, "background": { "scripts": [ @@ -31,6 +31,21 @@ "128": "images/icon128.png" } }, + "content_scripts": [ + { + "matches": [ + "*://twitter.com/*", + "*://www.twitter.com/*", + "*://mobile.twitter.com/*", + "*://pbs.twimg.com/*", + "*://video.twimg.com/*" + ], + "js": [ + "content-script.js" + ], + "run_at": "document_start" + } + ], "options_ui": { "page": "pages/options/options.html", "open_in_tab": false |