Files
plebeian-signer/projects/firefox/public/manifest.json
2025-02-07 22:26:34 +01:00

36 lines
768 B
JSON

{
"manifest_version": 3,
"name": "Gooti",
"description": "Nostr Identity Manager & Signer",
"version": "0.0.1",
"homepage_url": "https://getgooti.com",
"options_page": "options.html",
"permissions": ["storage"],
"action": {
"default_popup": "index.html",
"default_icon": "gooti-with-bg.png"
},
"background": {
"scripts": ["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": ["<all_urls>"]
}
],
"browser_specific_settings": {
"gecko": {
"id": "firefox@getgooti.com"
}
}
}