uBlock/platform/mv3/firefox/manifest.json
Raymond Hill cc2760f4d6
[mv3] New approach to toggle toolbar icon not requiring extra permissions
Related issue:
https://github.com/uBlockOrigin/uBOL-home/issues/198#issuecomment-2855135571

As a result, the permissions `tabs` and `webNavigation` have been removed.
2025-05-07 08:53:59 -04:00

77 lines
1.5 KiB
JSON

{
"action": {
"default_area": "navbar",
"default_icon": {
"16": "img/icon_16.png",
"32": "img/icon_32.png",
"64": "img/icon_64.png"
},
"default_popup": "popup.html"
},
"author": "Raymond Hill",
"background": {
"scripts": [ "/js/background.js" ],
"type": "module"
},
"browser_specific_settings": {
"gecko": {
"id": "uBOLiteRedux@raymondhill.net",
"strict_min_version": "128.0"
},
"gecko_android": {
"strict_min_version": "128.0"
}
},
"commands": {
"enter-zapper-mode": {
"description": "__MSG_zapperTipEnter__"
}
},
"declarative_net_request": {
"rule_resources": [
]
},
"default_locale": "en",
"description": "__MSG_extShortDesc__",
"icons": {
"16": "img/icon_16.png",
"32": "img/icon_32.png",
"64": "img/icon_64.png",
"128": "img/icon_128.png"
},
"manifest_version": 3,
"name": "uBO Lite",
"options_ui": {
"open_in_tab": true,
"page": "dashboard.html"
},
"host_permissions": [
"<all_urls>"
],
"permissions": [
"activeTab",
"declarativeNetRequest",
"scripting",
"storage"
],
"short_name": "uBO Lite",
"version": "1.0",
"web_accessible_resources": [
{
"resources": [
"/strictblock.html"
],
"matches": [
"<all_urls>"
]
},
{
"resources": [
"/zapper-ui.html"
],
"matches": [
"<all_urls>"
]
}
]
}