Files
BridgeSwarm/extension/manifest.json
T
Raven Scott 480f98b595
CI / Build & Test (push) Has been cancelled
Updates
2026-07-27 00:06:23 -04:00

69 lines
1.7 KiB
JSON

{
"manifest_version": 3,
"name": "BridgeSwarm",
"version": "1.0.0",
"description": "P2P Hyperswarm in the browser via native messaging host",
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxbk6DH/lfwyITfu7q07GIvt29Ee1IubQpVCK6Njw+WTs3jDJkcBh6VIfRsTzc1cg8W7M5IUST8B6yyKHVk41/ydVzeNCVJCxHnUr6PZAAEkTq6+moi6z++eUumhN3nY+T8FC57clG7ffhTfeZ7kwDXQLyQkDf6uoZeJL4MQ49R8aILlrTeGSCdCbwY3JzZSRgtHj1RGLHjs+J6wMIou+RtzTEEmCbyXkyywQ8UbKDzIqOVQx1TIWAWwp/FSZtcmWmjR1Ipnp9TxaGhiS6fVLnxT3aGDqLXilKoPoKPNUVb5B0NTgzzMKmqJ1yRlw8knZ5lDoYJ5p4Rj1wR1cjyskOwIDAQAB",
"permissions": [
"nativeMessaging",
"storage",
"scripting",
"notifications",
"tabs"
],
"action": {
"default_title": "BridgeSwarm Dashboard",
"default_icon": {
"16": "icons/16.png",
"48": "icons/48.png",
"128": "icons/128.png"
}
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
{
"resources": [
"api.js",
"framed-stream.js",
"protomux-bundle.js",
"defaults.js",
"dashboard.html",
"dashboard.js",
"examples/*",
"examples/**/*"
],
"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",
"open_in_tab": true
}
}