Securely manage your CSPR tokens and interact with dapps with the self-custody wallet for the Casper blockchain.
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",
"manifest_version": 3,
"icons": {
"16": "logo16.png",
"64": "logo64.png",
"128": "logo128.png",
"192": "logo192.png"
},
"permissions": [
"background",
"management",
"storage",
"tabs",
"declarativeNetRequest"
],
"declarative_net_request": {
"rule_resources": [
{
"id": "rules",
"enabled": true,
"path": "declarative_net_request_rules.json"
}
]
},
"host_permissions": [
"https://image-proxy-cdn.make.services/*",
"https://api.testnet.casperwallet.io/*",
"https://api.mainnet.casperwallet.io/*",
"https://node.cspr.cloud/*",
"https://node.testnet.cspr.cloud/*"
],
"background": {
"service_worker": "./background.bundle.js"
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"./contentScript.bundle.js",
"./sdk.bundle.js"
],
"run_at": "document_start",
"all_frames": true
}
],
"action": {
"default_icon": {
"16": "logo16.png",
"64": "logo64.png",
"128": "logo128.png",
"192": "logo192.png"
}
},
"web_accessible_resources": [
{
"resources": [
"sdk.bundle.js"
],
"matches": [
"<all_urls>"
]
}
],
"name": "Casper Wallet",
"version": "1.12.0",
"version_name": "1.12.0 (ef82f14)",
"author": "MAKE LLC",
"description": "Securely manage your CSPR tokens and interact with dapps with the self-custody wallet for the Casper blockchain.",
"content_security_policy": {
"extension_pages": "default-src 'none'; object-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; script-src 'self'; style-src 'unsafe-inline'; img-src https: data:; media-src https: data:; connect-src https://event-store-api-clarity-testnet.make.services https://event-store-api-clarity-mainnet.make.services https://casper-assets.s3.amazonaws.com/ https://image-proxy-cdn.make.services/ https://node.cspr.cloud/ https://node.testnet.cspr.cloud/ https://api.testnet.casperwallet.io/ https://api.mainnet.casperwallet.io/ https://onramp-api.cspr.click/api/"
}
}