manifest.json raw

   1  {
   2    "manifest_version": 3,
   3    "name": "Claude to Nostr",
   4    "version": "0.1",
   5    "description": "Project Claude conversations to Nostr kind 1 events in real-time via NIP-07",
   6    "permissions": [],
   7    "content_scripts": [
   8      {
   9        "matches": ["https://claude.ai/*"],
  10        "js": ["claude-to-nostr.user.js"],
  11        "run_at": "document_idle",
  12        "world": "MAIN"
  13      }
  14    ]
  15  }
  16