AutoFocus Cursor

AutoFocus Cursor

Automatically set the focus to a search text box when the page loads

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "AutoFocus Cursor",
  "description": "Automatically set the focus to a search text box when the page loads",
  "version": "3.0",
  "permissions": [
    "storage",
    "tabs"
  ],
  "icons": {
    "16": "images/icon16.png",
    "32": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/auto-focus.js"
      ],
      "run_at": "document_end"
    }
  ],
  "action": {
    "default_popup": "autofocuscursor-settings.html"
  }
}