Files
rfd-affiliate-stripper/extensions/chrome/manifest.json
2023-04-08 00:04:33 -04:00

23 lines
532 B
JSON

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