share-on-nostr

share-on-nostr

Share URL of active tab on Nostr

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "share-on-nostr",
  "description": "Share URL of active tab on Nostr",
  "version": "0.3.2",
  "manifest_version": 3,
  "icons": {
    "16": "img/logo-16.png",
    "32": "img/logo-34.png",
    "48": "img/logo-48.png",
    "128": "img/logo-128.png"
  },
  "action": {
    "default_popup": "src/pages/popup/index.html",
    "default_icon": "img/logo-48.png"
  },
  "options_page": "src/pages/preferences/index.html",
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  },
  "web_accessible_resources": [
    {
      "matches": [],
      "resources": [
        "img/logo-16.png",
        "img/logo-34.png",
        "img/logo-48.png",
        "img/logo-128.png"
      ],
      "use_dynamic_url": false
    },
    {
      "matches": [
        "http://localhost:*/*",
        "https://*/*"
      ],
      "resources": [
        "js/share-on-nostr.js"
      ],
      "use_dynamic_url": false
    }
  ],
  "permissions": [
    "storage",
    "activeTab",
    "scripting",
    "contextMenus"
  ]
}