nostr-links/manifest.json

38 lines
837 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": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [ "http://*/*", "https://*/*", "file:///*" ],
"js": ["content.js"],
"run_at": "document_start"
}
],
"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"
}
}
}