Hover copy

Hover copy

Press shift and hover a link: it will copy it to the clipboard. Hold the command key too and it will copy it in markdown format

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Hover copy",
  "version": "1.0.1",
  "description": "Press shift and hover a link: it will copy it to the clipboard. Hold the command key too and it will copy it in markdown format",
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "permissions": [
    "clipboardWrite"
  ],
  "icons": {
    "16": "images/logo-16.png",
    "32": "images/logo-32.png",
    "48": "images/logo-48.png",
    "128": "images/logo-128.png"
  }
}