Talisman is a Polkadot wallet that unlocks a new world of multichain web3 applications in the Paraverse.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 3,
"author": "Talisman",
"name": "Talisman Wallet",
"description": "Talisman is an open-source crypto wallet that makes web3 simple for beginners and unlocks superpowers for pros.",
"version": "2.6.1",
"action": {
"default_title": "Talisman",
"default_popup": "popup.html?embedded#/portfolio"
},
"options_ui": {
"page": "dashboard.html#/settings/general",
"open_in_tab": true
},
"content_scripts": [
{
"matches": [
"file://*/*",
"http://*/*",
"https://*/*"
],
"js": [
"content_script.js"
],
"run_at": "document_start",
"all_frames": true
}
],
"web_accessible_resources": [
{
"resources": [
"page.js"
],
"matches": [
"file://*/*",
"http://*/*",
"https://*/*"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
},
"permissions": [
"storage",
"tabs",
"notifications",
"alarms"
],
"icons": {
"16": "favicon16x16.png",
"24": "favicon24x24.png",
"32": "favicon32x32.png",
"48": "favicon48x48.png",
"64": "favicon64x64.png",
"128": "favicon128x128.png"
},
"background": {
"scripts": [
"./vendor-background.js",
"./background.js"
]
},
"browser_specific_settings": {
"gecko": {
"strict_min_version": "109.0",
"id": "{f5727e03-b26c-41e0-95dd-7e315ff16410}"
}
}
}