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",
"manifest_version": 3,
"name": "Vultisig Extension",
"description": "Vultisig Extension integrates Vultisig into web applications, enabling users to securely sign blockchain transactions.",
"author": {
"name": "Vultisig",
"email": "[email protected]",
"url": "https:\/\/vultisig.com"
},
"version": "0.2.15",
"version_name": "0.2.15",
"action": {
"default_icon": {
"16": "icon16.png",
"32": "icon32.png",
"48": "icon48.png",
"64": "icon64.png",
"128": "icon128.png"
},
"default_popup": "index.html"
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"exclude_matches": [
"https:\/\/*.google.com\/*"
],
"js": [
"content.js"
],
"run_at": "document_start",
"all_frames": true
}
],
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval' http:\/\/localhost;object-src 'self'"
},
"host_permissions": [
"https:\/\/*\/*"
],
"icons": {
"16": "icon16.png",
"32": "icon32.png",
"48": "icon48.png",
"64": "icon64.png",
"128": "icon128.png"
},
"permissions": [
"activeTab",
"clipboardRead",
"clipboardWrite",
"sidePanel",
"storage",
"windows",
"tabs"
],
"side_panel": {
"default_path": "index.html"
},
"web_accessible_resources": [
{
"matches": [
"<all_urls>"
],
"resources": [
"wallet-core.wasm",
"popup.html",
"zxing_reader.wasm"
],
"use_dynamic_url": false
},
{
"matches": [
"<all_urls>"
],
"resources": [
"inpage.js"
],
"use_dynamic_url": false
}
]
}