5ire Wallet

5ire Wallet

5ire Wallet in your browser compatible with both Native and EVM chains.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "5ire Wallet",
  "description": "5ire Wallet in your browser compatible with both Native and EVM chains.",
  "version": "0.2.1",
  "manifest_version": 3,
  "action": {
    "default_popup": "index.html",
    "default_title": "5ire Wallet"
  },
  "icons": {
    "16": "logo192.png",
    "48": "logo192.png",
    "128": "logo192.png"
  },
  "permissions": [
    "activeTab",
    "clipboardWrite",
    "notifications",
    "scripting",
    "storage",
    "tabs",
    "management"
  ],
  "host_permissions": [
    "http://*/",
    "https://*/"
  ],
  "background": {
    "service_worker": "static/js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "static/js/content.js"
      ],
      "all_frames": false,
      "run_at": "document_end"
    }
  ],
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+K",
        "mac": "MacCtrl+Shift+K"
      },
      "description": "Opens popup.html"
    }
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
  }
}