Skip to content

Commit

Permalink
Merge pull request #463 from privacy-tech-lab/issue-350-6
Browse files Browse the repository at this point in the history
Updated distribution manifest (Issue #350)
  • Loading branch information
Mattm27 committed May 24, 2024
2 parents 7938cdf + 60bd1ff commit eeda287
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 11 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

45 changes: 36 additions & 9 deletions src/manifests/firefox/manifest-dist.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,37 @@
"version": "5.0.0",
"description": "OptMeowt allows Web users to make use of their rights to opt out from the sale and sharing of personal data",
"permissions": [
"webRequest",
"webRequestBlocking",
"<all_urls>",
"declarativeNetRequest",
"webRequest",
"webNavigation",
"storage",
"activeTab",
"cookies",
"tabs"
"tabs",
"scripting"
],
"declarative_net_request": {
"rule_resources": [
{
"id": "universal_GPC",
"enabled": true,
"path": "rules/universal_gpc_rules.json"
},
{
"id": "GPC_exceptions",
"enabled": true,
"path": "rules/gpc_exceptions_rules.json"
}
]
},
"host_permissions": [
"<all_urls>"
],
"icons": {
"128": "assets/face-icons/icon128-face-circle.png"
},
"browser_action": {
"action": {
"default_title": "OptMeowt",
"default_popup": "popup.html"
},
Expand All @@ -34,9 +52,18 @@
"background": {
"scripts": ["background.bundle.js"]
},
"web_accessible_resources": [
"json/*.json"
],
"manifest_version": 2,
"incognito": "spanning"
"web_accessible_resources": [{
"resources": ["content-scripts/injection/gpc-dom.js"],
"matches": ["<all_urls>"]
}],
"manifest_version": 3,
"incognito": "spanning",
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"browser_specific_settings": {
"gecko": {
"id": "{7f22397f-fb61-47e2-9e4b-4ddd98faa275}"
}
}
}

0 comments on commit eeda287

Please sign in to comment.