nostr-links/manifest.json
2025-04-30 13:45:26 +04:00

40 lines
849 B
JSON

{
"manifest_version": 3,
"name": "Nostr Links",
"version": "1.0.2",
"description": "A web extension to discover Nostr links",
"author": "Râu Cao",
"homepage_url": "https://gitea.kosmos.org/raucao/nostr-links",
"icons": {
"48": "icons/nostr-48.png",
"96": "icons/nostr-96.png"
},
"permissions": [
"storage",
"tabs",
"activeTab"
],
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [ "http://*/*", "https://*/*", "file:///*" ],
"js": ["content.js"],
"run_at": "document_start"
}
],
"page_action": {
"default_icon": "icons/nostr.svg",
"default_title": "Nostr",
"default_popup": "popup/nostr-links.html"
},
"browser_specific_settings": {
"gecko": {
"id": "nostr-links-extension@kosmos.org"
}
}
}