Keys.Band

Keys.Band

Nostr Nip07 implementation

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Keys.Band",
  "version": "1.5.0",
  "description": "Nostr Nip07 implementation",
  "action": {
    "default_popup": "index.html"
  },
  "icons": {
    "16": "assets/logo-on.png",
    "32": "assets/logo-on.png",
    "48": "assets/logo-on-64.png",
    "128": "assets/logo-on-64.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage",
    "scripting",
    "tabs"
  ],
  "host_permissions": [
    "https://*/*",
    "http://*/*",
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/nostr-provider.js"
      ],
      "matches": [
        "https://*/*",
        "<all_urls>"
      ]
    }
  ]
}