Gate Wallet

Gate Wallet

Gate.io Web3 multi-terminal encrypted wallet.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "version": "2.11.0",
  "description": "__MSG_description__",
  "manifest_version": 3,
  "default_locale": "en",
  "content_security_policy": {
    "extension_pages": "object-src 'self'; script-src 'self' 'wasm-unsafe-eval'"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "window-provider.js"
      ],
      "matches": [
        "https://*/*",
        "http://localhost/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "file://*/*",
        "http://localhost/*",
        "https://*/*"
      ],
      "js": [
        "provider-bridge.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "windows": "Alt+T",
        "mac": "Alt+T",
        "chromeos": "Alt+T",
        "linux": "Alt+T"
      }
    }
  },
  "icons": {
    "128": "icon-128.png"
  },
  "action": {
    "default_title": "Gate Wallet",
    "default_popup": "popup.html"
  },
  "host_permissions": [
    "https://www.gate.io/*",
    "http://test01.gate.io/*",
    "http://101.207.35.105:28088/*",
    "http://localhost/*"
  ],
  "permissions": [
    "alarms",
    "storage",
    "unlimitedStorage",
    "activeTab",
    "tabs",
    "background",
    "cookies"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "externally_connectable": {
    "matches": [
      "https://*/*",
      "http://localhost/*"
    ],
    "ids": [
      "*"
    ]
  },
  "minimum_chrome_version": "88"
}