Bitcoin Libre

Bitcoin Libre

Bitcoin Libre is the next generation wallet for Bitcoin Runes and 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": "Bitcoin Libre",
  "description": "Bitcoin Libre is the next generation wallet for Bitcoin Runes and Ordinals.",
  "version": "1.0.4",
  "permissions": [
    "storage",
    "unlimitedStorage"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": "extension-icon.png"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
  },
  "background": {
    "scripts": [
      "browser-polyfill.js"
    ],
    "service_worker": "background.js"
  },
  "host_permissions": [
    "https://www.libre.org/*",
    "https://www.libredex.org/*",
    "https://defi.libre.org/*",
    "http://lb.libre.org/*",
    "http://pnetwork-node-2a.eu.ngrok.io/*",
    "https://server.staging.bitcoinlibre.io/*",
    "https://testnet.libre.org/*",
    "https://ordinals-api.libre.rocks/*",
    "https://ordinals-marketplace-api.libre.rocks/*",
    "https://cdn.libre.org/*",
    "https://mempool.space/*",
    "https://server.production.bitcoinlibre.io/*",
    "http://localhost:3000/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.libre.org/*",
        "https://www.libredex.org/*",
        "https://defi.libre.org/*",
        "http://localhost:3000/*"
      ],
      "js": [
        "browser-polyfill.js",
        "content-script.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "pageProvider.js"
      ],
      "matches": [
        "https://www.libre.org/*",
        "https://www.libredex.org/*",
        "https://defi.libre.org/*",
        "http://localhost:3000/*"
      ]
    }
  ]
}