Tonkeeper - wallet for TON

Tonkeeper - wallet for TON

Tonkeeper is the easiest way to store, send, and receive Toncoin on The Open Network, which is a powerful new blockchain that offers unprecedented transaction speeds and throughput while offering a robust programming environment for applications.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_appTitle__",
  "short_name": "__MSG_appName__",
  "description": "__MSG_appExtensionDescription__",
  "default_locale": "en",
  "version": "3.6.2",
  "manifest_version": 3,
  "action": {
    "default_popup": "index.html",
    "default_title": "__MSG_actionTitle__"
  },
  "icons": {
    "16": "logo-16x16.png",
    "32": "favicon.png",
    "64": "logo-64x64.png",
    "128": "logo-128x128.png"
  },
  "permissions": [
    "storage",
    "unlimitedStorage",
    "clipboardWrite",
    "activeTab"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "file://*/*",
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "provider.js"
      ],
      "matches": [
        "file://*/*",
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "109.0"
    }
  }
}