TON Hold — Toncoin Wallet

TON Hold — Toncoin Wallet

Tonhold friendly crypto wallet is a true, non-custodial TON wallet. Client-side interface helping you interact with TON blockchain.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "version": "0.0.1",
  "name": "TON Hold — Toncoin Wallet",
  "description": "Tonhold friendly crypto wallet is a true, non-custodial TON wallet. Client-side interface helping you interact with TON blockchain.",
  "icons": {
    "36": "/android-icon-36x36.png",
    "48": "/android-icon-48x48.png",
    "72": "/android-icon-72x72.png",
    "96": "/android-icon-96x96.png",
    "144": "/android-icon-144x144.png",
    "192": "/android-icon-192x192.png"
  },
  "permissions": [
    "webRequest",
    "storage",
    "tabs",
    "scripting"
  ],
  "action": {
    "default_title": "TON Wallet",
    "default_popup": "index.html"
  },
  "background": {
    "service_worker": "js/extension/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "file://*/*",
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/extension/content.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "file://*/*",
        "http://*/*",
        "https://*/*"
      ],
      "resources": [
        "js/extension/provider.js"
      ]
    }
  ],
  "host_permissions": [
    "file://*/*",
    "http://*/*",
    "https://*/*"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}