Files
plebeian-signer/projects/chrome/public/manifest.json
2025-02-15 15:10:18 +01:00

46 lines
975 B
JSON

{
"manifest_version": 3,
"name": "Gooti - Nostr Identity Manager & Signer",
"description": "Manage and switch between multiple identities while interacting with Nostr apps",
"version": "0.0.4",
"homepage_url": "https://getgooti.com",
"options_page": "options.html",
"permissions": [
"windows",
"storage"
],
"action": {
"default_popup": "index.html",
"default_icon": "gooti-with-bg.png"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"run_at": "document_start",
"matches": [
"<all_urls>"
],
"js": [
"gooti-content-script.js"
],
"all_frames": true
}
],
"web_accessible_resources": [
{
"resources": [
"gooti-extension.js"
],
"matches": [
"https://*/*",
"http://localhost:*/*",
"http://0.0.0.0:*/*",
"http://127.0.0.1:*/*",
"http://*.localhost/*"
]
}
]
}