uBlock/platform/mv3/safari/manifest.json
Raymond Hill 1c98faf46c
[mv3] Safari works; use 3-component version for uBOL
uBOL doesn't pass validation when using 4-component versioning,
so falling back to 3-component versioning for all platforms to
avoid special case.
2025-05-08 16:53:07 -04:00

70 lines
1.3 KiB
JSON

{
"action": {
"default_icon": "/img/icon_64.png",
"default_popup": "popup.html"
},
"author": "Raymond Hill",
"background": {
"scripts": [ "/js/background.js" ],
"type": "module",
"persistent": false
},
"browser_specific_settings": {
"safari": {
"strict_min_version": "18.4"
}
},
"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",
"512": "/img/icon_512.png"
},
"manifest_version": 3,
"name": "__MSG_extName__",
"options_ui": {
"page": "dashboard.html"
},
"host_permissions": [
"<all_urls>"
],
"permissions": [
"activeTab",
"declarativeNetRequest",
"declarativeNetRequestWithHostAccess",
"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>"
]
}
]
}