Copy HTML Link

Copy HTML Link

Copy link to the current page (with page title) to the clipboard.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "background": {
    "page": "background.html",
    "persistent": false
  },
  "browser_action": {
    "default_icon": "icon64.png",
    "default_title": "Copy HTML Link"
  },
  "description": "Copy link to the current page (with page title) to the clipboard.",
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "64": "icon64.png",
    "128": "icon128.png"
  },
  "name": "Copy HTML Link",
  "permissions": [
    "activeTab",
    "clipboardWrite",
    "contextMenus"
  ],
  "version": "1.2",
  "commands": {
    "copy-html-link": {
      "suggested_key": {
        "default": "Alt+Shift+C",
        "mac": "MacCtrl+Shift+C"
      },
      "description": "Copy link of the page (with title)"
    }
  }
}