LinkSuppressor: Make Any Link Selectable

LinkSuppressor: Make Any Link Selectable

A lightweight extension that makes any link selectable while [Alt], [Meta], or [Command] key is pressed.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "short_name": "LinkSuppressor",
  "name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "default_locale": "en",
  "version": "1.0.4",
  "author": "Hiroshi Yamamoto",
  "icons": {
    "19": "icons/selectable19.png",
    "128": "icons/selectable.png"
  },
  "permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "js": [
        "src/link_suppressor.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "icons/selectable19.png"
  ]
}