TonFlow

TonFlow

Magnificent & Secure TON Wallet!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "TonFlow",
  "short_name": "TonFlow",
  "version": "1.1.0",
  "description": "Magnificent & Secure TON Wallet!",
  "icons": {
    "16": "./assets/images/tonflow_ico_16.png",
    "48": "./assets/images/tonflow_ico_48.png",
    "128": "./assets/images/tonflow_ico_128.png"
  },
  "permissions": [
    "storage",
    "activeTab",
    "clipboardWrite"
  ],
  "action": {
    "default_popup": "index.html?#/popup",
    "default_title": "Open TONFLOW wallet"
  },
  "chrome_url_overrides": {
    "newtab": "index.html?#/tab"
  },
  "background": {
    "service_worker": "serviceWorker.js"
  },
  "content_scripts": [
    {
      "js": [
        "contentPage.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "extensionProvider.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ]
}