Bitverse Wallet

Bitverse Wallet

A multi-chain & multi-ID Wallet

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "short_name": "__MSG_appName__",
  "version": "0.5.5",
  "default_locale": "en",
  "description": "__MSG_appDescription__",
  "icons": {
    "16": "images/icons/16.png",
    "32": "images/icons/32.png",
    "48": "images/icons/48.png",
    "64": "images/icons/64.png",
    "128": "images/icons/128.png",
    "512": "images/icons/512.png"
  },
  "action": {
    "default_icon": {
      "16": "images/icons/16.png",
      "32": "images/icons/32.png",
      "48": "images/icons/48.png",
      "128": "images/icons/128.png"
    },
    "default_title": "BitverseWallet",
    "default_popup": "popup.html"
  },
  "author": "https://bitverse.zone/",
  "background": {
    "service_worker": "bg-loader.js"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "webextension-polyfill.js",
        "content-script.js"
      ],
      "matches": [
        "file://*/*",
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "*://connect.trezor.io/*/popup.html"
      ],
      "js": [
        "vendor/trezor/trezor-content-script.js"
      ]
    }
  ],
  "content_security_policy": {},
  "permissions": [
    "storage",
    "activeTab",
    "notifications",
    "tabs"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "pageProvider.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}