Drag-Select Link Text

Drag-Select Link Text

Select link text with easy mouse gestures.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "version": "1.5.5resigned1",
  "description": "__MSG_extensionDescription__",
  "author": "Kestrel",
  "homepage_url": "https://github.com/nkestrel/dragselectlinktext",
  "default_locale": "en",
  "icons": {
    "48": "icons/icon48.png",
    "96": "icons/icon96.png"
  },
  "applications": {
    "gecko": {
      "id": "dragselectlinktext@kestrel",
      "strict_min_version": "55.0"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "options/defaults.js",
        "content.js"
      ],
      "css": [
        "select.css"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "match_about_blank": true
    }
  ],
  "options_ui": {
    "page": "options/options.html",
    "browser_style": true
  },
  "permissions": [
    "storage"
  ]
}