70 lines
1.3 KiB
JSON
70 lines
1.3 KiB
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "BridgeSwarm",
|
|
"version": "1.0.0",
|
|
"description": "P2P Hyperswarm in the browser via native messaging host",
|
|
"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",
|
|
"discordjs-builders.js",
|
|
"discordjs.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
|
|
}
|
|
}
|