KHC

KHC

The first and most poplular KHC wallet

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.0.3",
  "name": "KHC",
  "manifest_version": 2,
  "description": "The first and most poplular KHC wallet",
  "browser_action": {
    "default_icon": "assets/images/pop-icon.png",
    "default_title": "KHC",
    "default_popup": "pages/popup.html"
  },
  "background": {
    "persistent": false,
    "scripts": [
      "modules/vendor/vendor.js",
      "modules/background/background.js"
    ]
  },
  "icons": {
    "128": "assets/images/icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "modules/vendor/vendor.js",
        "modules/content/content.js"
      ],
      "all_frames": true
    }
  ],
  "permissions": [
    "http://*/*",
    "https://*/*",
    "http://127.0.0.1:3000/*",
    "http://localhost:3000/*",
    "storage",
    "unlimitedStorage",
    "clipboardWrite"
  ],
  "web_accessible_resources": [
    "modules/pageHook/pageHook.js"
  ],
  "content_security_policy": "script-src 'self' https://g.alicdn.com/react-intl-universal/locale-data/1.0.0/zh.js  https://g.alicdn.com/react-intl-universal/locale-data/1.0.0/en.js; style-src * 'unsafe-inline' 'self' blob:;"
}