A browser extension wallet from Decentralized Authority.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "NodeWallet",
"description": "A browser extension wallet from Decentralized Authority.",
"version": "0.7.1",
"manifest_version": 3,
"permissions": [
"activeTab",
"alarms",
"downloads",
"storage",
"tabs"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"world": "ISOLATED",
"run_at": "document_start"
},
{
"matches": [
"<all_urls>"
],
"js": [
"content-bridge.js"
],
"world": "MAIN",
"run_at": "document_start"
}
],
"action": {
"default_title": "NodeWallet",
"default_popup": "index.html"
},
"icons": {
"192": "logo192.png",
"512": "logo512.png"
},
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
}
}