Blade – Hedera Web3 Digital Wallet

Blade – Hedera Web3 Digital Wallet

A Hedera Hashgraph Wallet in your Browser

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; style-src 'self' 'unsafe-inline'; connect-src *; img-src 'self' data: https:"
  },
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "version": "1.6.1",
  "default_locale": "en",
  "permissions": [
    "system.display",
    "storage",
    "alarms",
    "scripting",
    "gcm",
    "tabs"
  ],
  "host_permissions": [
    "https://*/*"
  ],
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "background": {
    "service_worker": "BackgroundBoot.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "exclude_matches": [
        "https://widget.changelly.com/*",
        "https://code.gist.build/renderer/*",
        "https://verify.walletconnect.com/*"
      ],
      "all_frames": true,
      "js": [
        "js/content-script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "js/inject.js",
        "styles/content-script.css",
        "fonts/*",
        "img/*",
        "animations/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://*.dcentwallet.com/*"
    ]
  },
  "action": {
    "default_icon": {
      "19": "icons/19.png",
      "38": "icons/38.png"
    }
  }
}