mirror of
https://github.com/davegallant/rfd-redirect-stripper.git
synced 2025-08-06 00:33:39 +00:00
Remove scripting permission and host_permissions and publish to chrome web store (#31)
* Remove scripting permission * Remove host permissions * Add chrome web store link
This commit is contained in:
@@ -2,11 +2,15 @@
|
||||
"manifest_version": 3,
|
||||
"name": "rfd-redirect-stripper",
|
||||
"description": "Strip tracking redirects on rfd",
|
||||
"version": "0.4",
|
||||
"version": "0.5.1",
|
||||
"content_scripts": [
|
||||
{
|
||||
"matches": ["*://forums.redflagdeals.com/*"],
|
||||
"js": ["js/content.js"],
|
||||
"matches": [
|
||||
"*://forums.redflagdeals.com/*"
|
||||
],
|
||||
"js": [
|
||||
"js/content.js"
|
||||
],
|
||||
"run_at": "document_end"
|
||||
}
|
||||
],
|
||||
@@ -15,12 +19,16 @@
|
||||
"default_popup": "html/popup.html"
|
||||
},
|
||||
"background": {
|
||||
"scripts": ["js/background.js"],
|
||||
"scripts": [
|
||||
"js/background.js"
|
||||
],
|
||||
"service_worker": "js/background.js",
|
||||
"type": "module"
|
||||
},
|
||||
"permissions": ["scripting", "storage", "alarms"],
|
||||
"host_permissions": ["*://forums.redflagdeals.com/*"],
|
||||
"permissions": [
|
||||
"storage",
|
||||
"alarms"
|
||||
],
|
||||
"browser_specific_settings": {
|
||||
"gecko": {
|
||||
"id": "davegallant@gmail.com",
|
||||
|
Reference in New Issue
Block a user