Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"short_name": "BitSnap Wallet",
"author": "BitSnap",
"manifest_version": 3,
"name": "BitSnap Wallet: Your Secure Gateway to UTXO Assets",
"description": "Securely store, send, and receive digital assets directly from your Chrome browser using the UTXO model.",
"icons": {
"48": "\/icon-48.png",
"128": "\/icon.png"
},
"action": {
"default_popup": "index.html",
"default_title": "Open the popup",
"default_icon": {
"48": "\/icon-48.png",
"128": "\/icon.png"
}
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content-script.js"
],
"run_at": "document_start",
"all_frames": true
}
],
"web_accessible_resources": [
{
"resources": [
"pageProvider.js"
],
"matches": [
"<all_urls>"
]
}
],
"permissions": [
"storage",
"unlimitedStorage"
],
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
},
"background": {
"service_worker": "background.js"
},
"minimum_chrome_version": "99",
"version": "0.0.6.2"
}