ZBD Browser Extension

ZBD Browser Extension

ZBD App, now in your browser. Manage and stack your sats. Post, zap, and connect. Discover new ways to earn bitcoin.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "short_name": "ZBD",
  "name": "ZBD Browser Extension",
  "description": "ZBD App, now in your browser. Manage and stack your sats. Post, zap, and connect. Discover new ways to earn bitcoin.",
  "version": "1.0.4",
  "manifest_version": 3,
  "permissions": [
    "clipboardRead",
    "storage",
    "offscreen"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "background": {
    "service_worker": "/app/background.js"
  },
  "action": {
    "default_popup": "index.html",
    "default_title": "ZBD",
    "default_icon": {
      "16": "./assets/images/zbd-16.png",
      "32": "./assets/images/zbd-32.png",
      "128": "./assets/images/zbd-128.png"
    }
  },
  "icons": {
    "16": "./assets/images/zbd-16.png",
    "32": "./assets/images/zbd-32.png",
    "128": "./assets/images/zbd-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/app/content-script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "/static/css/content.css",
        "/static/media/*",
        "/app/platforms/*",
        "/app/nostr-provider.js",
        "/app/webln-provider.js"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{7cad7076-584b-4e80-a00c-ef282bd77052}"
    }
  }
}