Add firefox extension

This commit is contained in:
Dave Gallant
2023-04-06 23:04:49 -04:00
parent 1a9fbb061f
commit 5a58a92460
5 changed files with 84 additions and 3 deletions

View 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": {
"scripts": ["background.js"]
},
"permissions": ["scripting", "storage"],
"host_permissions": ["*://forums.redflagdeals.com/*"]
}