38 lines
937 B
JSON
38 lines
937 B
JSON
{
|
|
"name": "Nostr Signer (formerly Nostr Connect)",
|
|
"description": "Nostr Signer Extension",
|
|
"version": "1.0.0",
|
|
"homepage_url": "https://git.reya.su/reya/nostr-connect",
|
|
"manifest_version": 2,
|
|
"browser_specific_settings": {
|
|
"gecko": {
|
|
"data_collection_permissions": {
|
|
"required": ["none"]
|
|
}
|
|
}
|
|
},
|
|
"icons": {
|
|
"16": "icons/icon16.png",
|
|
"32": "icons/icon32.png",
|
|
"48": "icons/icon48.png",
|
|
"128": "icons/icon128.png"
|
|
},
|
|
"options_page": "options.html",
|
|
"background": {
|
|
"scripts": ["background.build.js"]
|
|
},
|
|
"browser_action": {
|
|
"default_title": "Nostr Signer",
|
|
"default_popup": "popup.html"
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["<all_urls>"],
|
|
"js": ["content-script.build.js"]
|
|
}
|
|
],
|
|
"permissions": ["storage", "activeTab", "windows"],
|
|
"optional_permissions": ["notifications"],
|
|
"web_accessible_resources": ["nostr-provider.js"]
|
|
}
|