PolkaGate: The gateway to the Polkadot eco.

PolkaGate: The gateway to the Polkadot eco.

A user-friendly wallet for seamless browser-based interaction with Polkadot/Substrate-based blockchains.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "author": "Polkagate",
  "description": "A user-friendly wallet for seamless browser-based interaction with Polkadot/Substrate-based blockchains.",
  "homepage_url": "https://polkagate.xyz",
  "name": "PolkaGate: The gateway to the Polkadot eco.",
  "short_name": "PolkaGate",
  "manifest_version": 3,
  "version": "0.4",
  "permissions": [
    "storage",
    "unlimitedStorage",
    "tabs",
    "offscreen"
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "action": {
    "default_title": "Polkagate",
    "default_popup": "index.html"
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "16": "images/icon-16.png",
    "32": "images/icon-32.png",
    "48": "images/icon-48.png",
    "64": "images/icon-64.png",
    "128": "images/icon-128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "page.js"
      ],
      "matches": [
        "https://*/*"
      ]
    },
    {
      "resources": [
        "page.js"
      ],
      "matches": [
        "http://*/*"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}