Kaanch Wallet

Kaanch Wallet

Interact with the Kaanch ecosystem seamlessly and securely with Kaanch 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": "Kaanch Wallet",
  "version": "1.0.31",
  "description": "Interact with the Kaanch ecosystem seamlessly and securely with Kaanch Wallet.",
  "permissions": [
    "scripting",
    "activeTab",
    "storage",
    "tabs",
    "webNavigation",
    "webRequest",
    "alarms"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "action": {
    "default_popup": "index.html",
    "default_icon": {
      "128": "Kaanch_logo.png"
    }
  },
  "icons": {
    "128": "Kaanch_logo.png"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; frame-ancestors 'none';"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "inpage.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}