Coin Wallet

Coin Wallet

Coin Wallet Browser Extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Coin Wallet",
  "homepage_url": "https://coindefi.org/",
  "description": "Coin Wallet Browser Extension",
  "permissions": [
    "activeTab",
    "notifications",
    "storage",
    "unlimitedStorage",
    "clipboardRead"
  ],
  "icons": {
    "16": "icons/16x16.png",
    "48": "icons/48x48.png",
    "128": "icons/128x128.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "file://*/*",
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/content-script.js",
        "js/extension-script.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "Coin Wallet",
    "default_icon": {
      "19": "icons/16x16.png",
      "38": "icons/48x48.png"
    }
  },
  "version": "3.0.7",
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';",
  "externally_connectable": {
    "matches": [
      "https://liquality-ledger-web-bridge.web.app/"
    ]
  }
}