CrowdTLS/manifest.json

48 lines
1.2 KiB
JSON
Raw Permalink Normal View History

{
"manifest_version": 3,
"name": "CrowdTLS",
"version": "0.0.1",
"description": "Crowd-sourced validation for TLS/SSL certificates",
"icons": {
"16": "icons/crowdtls-16.png",
"24": "icons/crowdtls-24.png",
"32": "icons/crowdtls-32.png",
"48": "icons/crowdtls-48.png",
"96": "icons/crowdtls-96.png",
"128": "icons/crowdtls-128.png",
"150": "icons/crowdtls-150.png",
"512": "icons/crowdtls-512.png"
},
"action": {
"default_icon": {
"19": "icons/crowdtls-19.png",
"38": "icons/crowdtls-38.png"
},
"default_title": "CrowdTLS",
"default_popup": "crowdtls.html"
},
"host_permissions": [
2023-06-07 14:36:03 -07:00
"https://crowdtls.mips.uk/api/v1/*",
"http://127.0.0.1:8000/api/v1/*",
"https://*/*"
],
"permissions": [
"webRequest",
"webRequestBlocking",
"storage"
],
"optional_permissions": [
"notifications"
],
"background": {
"scripts": [
"worker.js"
]
},
"browser_specific_settings": {
"gecko": {
"id": "ext@crowdtls",
"strict_min_version": "101.0"
}
}
}