{ "manifest_version": 3, "name": "CryptoVault", "version": "1.0.0", "description": "Secure cryptographic key management and signing in your browser", "permissions": [ "storage", "activeTab" ], "background": { "service_worker": "background.js", "type": "module" }, "action": { "default_popup": "popup.html", "default_icon": { "16": "icons/icon16.png", "48": "icons/icon48.png", "128": "icons/icon128.png" } }, "web_accessible_resources": [ { "resources": [ "wasm/*.wasm", "wasm/*.js" ], "matches": [""] } ], "content_security_policy": { "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'; style-src 'self' 'unsafe-inline';" } }