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