Create Link

Create Link

Copy current page URL to clipboard in various formats.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Create Link",
  "version": "0.5.7",
  "manifest_version": 3,
  "background": {
    "service_worker": "js/service-worker.js"
  },
  "action": {
    "default_icon": "icon64.png",
    "default_title": "Create Link",
    "default_popup": "popup.html"
  },
  "description": "Copy current page URL to clipboard in various formats.",
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "64": "icon64.png",
    "128": "icon128.png"
  },
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*/*"
      ],
      "css": [],
      "js": [
        "js/content.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "commands": {
    "current-tab-link": {
      "description": "Current tab in default format"
    }
  },
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "permissions": [
    "contextMenus",
    "storage",
    "clipboardWrite"
  ]
}