Copy for Scrapbox

Copy for Scrapbox

Users can get a link to the page in the current tab in Scrapbox notation.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Copy for Scrapbox",
  "description": "Users can get a link to the page in the current tab in Scrapbox notation.",
  "manifest_version": 3,
  "action": {
    "default_popup": "popup.html",
    "default_icons": {
      "16": "images/icos16.png",
      "24": "images/icon24.png",
      "32": "images/icon32.png",
      "128": "images/icon128.png"
    }
  },
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  },
  "icons": {
    "16": "images/icon16.png",
    "24": "images/icon24.png",
    "32": "images/icon32.png",
    "128": "images/icon128.png"
  },
  "permissions": [
    "tabs",
    "contextMenus",
    "scripting",
    "storage"
  ],
  "host_permissions": [
    "https://*/*"
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "/src/*.js"
      ],
      "use_dynamic_url": false
    }
  ],
  "version": "1.7.0"
}