Copy Link

Copy Link

Copy links and page urls with text from context menu

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "5.5.2",
  "background": {
    "scripts": [
      "js/clipboard.js",
      "js/action.js",
      "js/background.js",
      "js/app.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "js/links.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ],
  "default_locale": "en",
  "description": "__MSG_descr__",
  "icons": {
    "16": "res/link16.png",
    "48": "res/link48.png",
    "128": "res/link128.png"
  },
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "options_ui": {
    "page": "options/options.html",
    "open_in_tab": true
  },
  "permissions": [
    "contextMenus",
    "storage",
    "<all_urls>",
    "tabs"
  ],
  "commands": {
    "copy-link-text": {
      "suggested_key": {
        "default": "Alt+Shift+C"
      },
      "description": "copy hovered link text"
    }
  }
}