manifest_v3.json raw

   1  {
   2    "manifest_version": 3,
   3    "name": "Smesh Signer",
   4    "version": "2.2.6",
   5    "description": "Nostr key management and signing for smesh",
   6    "background": { "service_worker": "bg/sw.mjs", "type": "module" },
   7    "permissions": ["storage", "activeTab", "offscreen"],
   8    "content_scripts": [{
   9      "matches": ["<all_urls>"],
  10      "js": ["content-script.js"],
  11      "run_at": "document_start"
  12    }],
  13    "web_accessible_resources": [{
  14      "resources": ["injected.js", "prompt.js"],
  15      "matches": ["<all_urls>"]
  16    }]
  17  }
  18