mirror of
https://github.com/davegallant/rfd-redirect-stripper.git
synced 2025-08-05 16:23:40 +00:00
43 lines
833 B
JSON
43 lines
833 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "rfd-redirect-stripper",
|
|
"description": "Strip tracking redirects on rfd",
|
|
"version": "0.5.2",
|
|
"content_scripts": [
|
|
{
|
|
"matches": [
|
|
"*://forums.redflagdeals.com/*"
|
|
],
|
|
"js": [
|
|
"js/content.js"
|
|
],
|
|
"run_at": "document_end"
|
|
}
|
|
],
|
|
"action": {
|
|
"default_icon": "icon.png",
|
|
"default_popup": "html/popup.html"
|
|
},
|
|
"background": {
|
|
"scripts": [
|
|
"js/background.js"
|
|
],
|
|
"service_worker": "js/background.js",
|
|
"type": "module"
|
|
},
|
|
"permissions": [
|
|
"storage",
|
|
"alarms"
|
|
],
|
|
"browser_specific_settings": {
|
|
"gecko": {
|
|
"id": "davegallant@gmail.com",
|
|
"strict_min_version": "112.0"
|
|
},
|
|
"gecko_android": {
|
|
"strict_min_version": "113.0"
|
|
}
|
|
},
|
|
"minimum_chrome_version": "121"
|
|
}
|