mirror of
https://github.com/gorhill/uBlock.git
synced 2026-03-11 09:04:36 +00:00
Reference: https://developer.apple.com/documentation/safariservices/assessing-your-safari-web-extension-s-browser-compatibility
90 lines
1.6 KiB
JSON
90 lines
1.6 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.6"
|
|
}
|
|
},
|
|
"commands": {
|
|
"enter-zapper-mode": {
|
|
"description": "__MSG_zapperTipEnter__"
|
|
},
|
|
"enter-picker-mode": {
|
|
"description": "__MSG_pickerTipEnter__"
|
|
}
|
|
},
|
|
"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",
|
|
"unlimitedStorage"
|
|
],
|
|
"short_name": "uBO Lite",
|
|
"version": "1.0",
|
|
"web_accessible_resources": [
|
|
{
|
|
"resources": [
|
|
"strictblock.html"
|
|
],
|
|
"matches": [
|
|
"<all_urls>"
|
|
]
|
|
},
|
|
{
|
|
"resources": [
|
|
"zapper-ui.html"
|
|
],
|
|
"matches": [
|
|
"<all_urls>"
|
|
]
|
|
},
|
|
{
|
|
"resources": [
|
|
"picker-ui.html"
|
|
],
|
|
"matches": [
|
|
"<all_urls>"
|
|
]
|
|
},
|
|
{
|
|
"resources": [
|
|
"unpicker-ui.html"
|
|
],
|
|
"matches": [
|
|
"<all_urls>"
|
|
]
|
|
}
|
|
]
|
|
}
|