mirror of
https://github.com/davegallant/rfd-redirect-stripper.git
synced 2025-08-06 00:33:39 +00:00
Start to consolidate source code for both browsers
This commit is contained in:
28
manifest.json
Normal file
28
manifest.json
Normal file
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"manifest_version": 3,
|
||||
"name": "rfd-redirect-stripper",
|
||||
"description": "Strip tracking redirects on rfd",
|
||||
"version": "0.1",
|
||||
"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/utils.js", "js/background.js"]
|
||||
},
|
||||
"permissions": ["scripting", "storage"],
|
||||
"host_permissions": ["*://forums.redflagdeals.com/*"],
|
||||
"browser_specific_settings": {
|
||||
"gecko": {
|
||||
"id": "davegallant@gmail.com",
|
||||
"strict_min_version": "42.0"
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user