{ "manifest_version": 3, "name": "Nostr Links", "version": "1.0.0", "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_end" } ], "page_action": { "default_icon": "icons/nostr.svg", "default_title": "Nostr", "default_popup": "popup/nostr-links.html" } }