Tonkeeper — wallet for TON

Tonkeeper — wallet for TON

Your extension wallet on The Open Network

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appTitle__",
  "short_name": "__MSG_appName__",
  "description": "__MSG_appExtensionDescription__",
  "default_locale": "en",
  "version": "3.9.5",
  "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": [
    "proxy",
    "storage",
    "unlimitedStorage",
    "clipboardWrite"
  ],
  "background": {
    "service_worker": "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://*/*"
      ]
    }
  ]
}