27 lines
649 B
JSON
27 lines
649 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "Hero Vault",
|
|
"version": "1.0.0",
|
|
"description": "A secure browser extension for cryptographic operations and Rhai script execution",
|
|
"action": {
|
|
"default_popup": "index.html",
|
|
"default_title": "Hero Vault"
|
|
},
|
|
"icons": {
|
|
"16": "icons/icon-16.png",
|
|
"48": "icons/icon-48.png",
|
|
"128": "icons/icon-128.png"
|
|
},
|
|
"permissions": [
|
|
"storage",
|
|
"unlimitedStorage"
|
|
],
|
|
"background": {
|
|
"service_worker": "service-worker-loader.js",
|
|
"type": "module"
|
|
},
|
|
"content_security_policy": {
|
|
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
|
|
}
|
|
}
|