mirror of
https://github.com/davegallant/rfd-redirect-stripper.git
synced 2025-08-09 18:12:28 +00:00
Add chrome extension source
This commit is contained in:
21
extensions/chrome/manifest.json
Normal file
21
extensions/chrome/manifest.json
Normal file
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"manifest_version": 3,
|
||||
"name": "rfd-redirect-stripper",
|
||||
"description": "Strip tracking redirects on rfd",
|
||||
"version": "0.1",
|
||||
"content_scripts": [
|
||||
{
|
||||
"matches": ["*://forums.redflagdeals.com/*"],
|
||||
"js": ["content.js"],
|
||||
"run_at": "document_end"
|
||||
}
|
||||
],
|
||||
"action": {
|
||||
"default_icon": "icon.png"
|
||||
},
|
||||
"background": {
|
||||
"service_worker": "background.js"
|
||||
},
|
||||
"permissions": ["scripting", "storage"],
|
||||
"host_permissions": ["*://forums.redflagdeals.com/*"]
|
||||
}
|
Reference in New Issue
Block a user