Concordium Wallet

Concordium Wallet

Browser extension wallet for the Concordium blockchain

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Concordium Wallet",
  "manifest_version": 3,
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "content.js"
      ],
      "matches": [
        "file://*/*",
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_idle",
      "match_origin_as_fallback": true
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "tabs",
    "activeTab",
    "storage",
    "scripting",
    "webRequest",
    "downloads",
    "alarms"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "inject.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "resources/icons/16x16.png",
    "32": "resources/icons/32x32.png",
    "48": "resources/icons/48x48.png",
    "128": "resources/icons/128x128.png"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Shift+Alt+C"
      },
      "description": "Start the extension"
    }
  },
  "version": "1.5.1",
  "version_name": "1.5.1",
  "description": "Browser extension wallet for the Concordium blockchain",
  "author": "Concordium Software"
}