eckoWALLET

eckoWALLET

The best web extension wallet for the Kadena blockchain.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "eckoWALLET",
  "description": "The best web extension wallet for the Kadena blockchain.",
  "version": "2.13.1",
  "manifest_version": 3,
  "background": {
    "service_worker": "app/background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "app/script/inpage.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "file://*/*",
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "app/content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "action": {
    "default_title": "Open the popup",
    "default_popup": "index.html#popup",
    "default_icon": {
      "16": "favicon.png",
      "32": "favicon.png",
      "48": "favicon.png",
      "128": "favicon.png"
    }
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://api.chainweb.com/",
    "https://api.testnet.chainweb.com/",
    "https://api.coingecko.com/",
    "*://*/*"
  ],
  "icons": {
    "16": "favicon.png",
    "32": "favicon.png",
    "48": "favicon.png",
    "128": "favicon.png"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}