{ "name": "Nostrame", "description": "Nostr Accounts Managing Extension", "version": "1.1.2", "homepage_url": "https://github.com/Anderson-Juhasc/nostrame", "manifest_version": 3, "icons": { "16": "assets/icons/16x16.png", "32": "assets/icons/32x32.png", "48": "assets/icons/48x48.png", "128": "assets/icons/128x128.png" }, "background": { "service_worker": "background.build.js" }, "options_page": "options.html", "action": { "default_title": "Nostrame", "default_popup": "popup.html" }, "content_scripts": [ { "run_at": "document_end", "matches": [""], "js": ["content-script.build.js"], "all_frames": true } ], "permissions": ["storage", "windows", "alarms"], "optional_permissions": ["notifications"], "web_accessible_resources": [ { "resources": ["nostr-provider.js"], "matches": [ "https://*/*", "http://localhost:*/*", "http://0.0.0.0:*/*", "http://127.0.0.1:*/*", "http://*.localhost/*" ] } ] }