Files
holesail-browser/extension/manifest.json
T
Raven Scott d58a0b6e2d
CI / Build & Test (push) Has been cancelled
first commit
2026-02-27 18:13:59 -05:00

67 lines
1.7 KiB
JSON

{
"manifest_version": 3,
"name": "Holesail Browser",
"version": "1.0.0",
"description": "P2P Holesail tunnels in the browser via native messaging host — open hs:// URLs with valid certificates",
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmpSyoCuwrSnyspandk7hcQ3rTVegPWPyABcn9qX9EMleN7FIPRN81Z31IPXnbMDfXavnAnUc0vEH1ujtv/PAjew58kN4CFUTE1opU15v6dzn+ltrtG1aX+9dwYAOBsxKFU5TzfXI4SvixWzEGjJ1Irh4QEYJh4/C1A8mOdF+VvIA4y5ko7npH+7SRmCnxQ+c4Jh7gmG7qvblEHZzvM5VxT0H4gXivxD7+ABDQFnlet8ojVgyN6azND4BuPER5672vRdzjr4Emd9bL1L3N9QzQzvT7tUdFkJ2Giph9Bog9yyymnxbb8S4u0u8OlDdLBQlCWrERoYxHG9QGZse1EFWsQIDAQAB",
"permissions": [
"nativeMessaging",
"storage",
"scripting",
"notifications",
"tabs",
"declarativeNetRequest",
"proxy"
],
"action": {
"default_title": "Holesail Dashboard"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
{
"resources": [
"dashboard.html",
"dashboard.js",
"dashboard.css",
"vendor/xterm.js",
"vendor/xterm-addon-fit.js",
"vendor/xterm.css",
"vendor/novnc.js"
],
"matches": [
"<all_urls>"
]
}
],
"icons": {
"16": "icons/16.png",
"48": "icons/48.png",
"128": "icons/128.png"
},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "79.0"
}
},
"options_ui": {
"page": "options.html"
},
"host_permissions": [
"*://*.host.local/*",
"*://*.hole.sail/*"
]
}