nos2x

nos2x

Nostr Signer Extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "nos2x",
  "description": "Nostr Signer Extension",
  "version": "2.3.0",
  "homepage_url": "https://github.com/fiatjaf/nos2x",
  "manifest_version": 3,
  "icons": {
    "16": "icons/16x16.png",
    "32": "icons/32x32.png",
    "48": "icons/48x48.png",
    "128": "icons/128x128.png"
  },
  "options_page": "options.html",
  "background": {
    "service_worker": "background.build.js"
  },
  "action": {
    "default_title": "nos2x",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-script.build.js"
      ],
      "all_frames": true
    }
  ],
  "permissions": [
    "storage",
    "activeTab",
    "windows"
  ],
  "optional_permissions": [
    "notifications"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "nostr-provider.js"
      ],
      "matches": [
        "https://*/*",
        "http://localhost:*/*",
        "http://127.0.0.1:*/*"
      ]
    }
  ]
}