AutoHighlight Input

AutoHighlight Input

Automatically highlight text in an input box when clicked

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "AutoHighlight Input",
  "version": "1.20",
  "description": "Automatically highlight text in an input box when clicked",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "auto-highlight-input.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "images/auto-highlight-input-16.png",
    "32": "images/auto-highlight-input-32.png",
    "48": "images/auto-highlight-input-48.png",
    "128": "images/auto-highlight-input-128.png"
  },
  "manifest_version": 3
}