UniSat Wallet

UniSat Wallet

Inscribe and store your inscriptions in the world's first Open Source Chrome wallet for Ordinals!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "version": "1.3.3",
  "default_locale": "en",
  "description": "__MSG_appDescription__",
  "icons": {
    "16": "/images/logo/[email protected]",
    "32": "/images/logo/[email protected]",
    "48": "/images/logo/[email protected]",
    "128": "/images/logo/[email protected]"
  },
  "action": {
    "default_popup": "index.html",
    "default_icon": {
      "16": "/images/logo/[email protected]",
      "32": "/images/logo/[email protected]",
      "48": "/images/logo/[email protected]",
      "128": "/images/logo/[email protected]"
    },
    "default_title": "__MSG_appName__"
  },
  "author": "https://unisat.io",
  "background": {
    "service_worker": "background.js"
  },
  "homepage_url": "https://unisat.io",
  "permissions": [
    "storage",
    "unlimitedStorage",
    "activeTab"
  ],
  "short_name": "__MSG_appName__",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-script.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "pageProvider.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
  },
  "externally_connectable": {
    "matches": [
      "https://unisat.io/*"
    ],
    "ids": [
      "*"
    ]
  },
  "minimum_chrome_version": "88"
}