Files
AutistMask/manifest/firefox.json
clawbot bf1dbec87c
All checks were successful
check / check (push) Successful in 26s
fix: run libsodium on WebAssembly under the extension CSP (closes #182)
2026-08-12 10:30:15 +02:00

28 lines
798 B
JSON

{
"manifest_version": 2,
"name": "AutistMask",
"version": "0.1.0",
"description": "Minimal Ethereum wallet for Firefox",
"permissions": ["storage", "activeTab", "alarms", "<all_urls>"],
"content_security_policy": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'",
"browser_action": {
"default_popup": "src/popup/index.html"
},
"background": {
"scripts": ["src/background/index.js"]
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["src/content/index.js"],
"run_at": "document_start"
}
],
"web_accessible_resources": ["src/content/inpage.js"],
"browser_specific_settings": {
"gecko": {
"id": "autistmask@sneak.berlin"
}
}
}