Auto Cursor

A productivity tool to automatically select the first visible text input.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "Auto Cursor",
  "description": "A productivity tool to automatically select the first visible text input.",
  "version": "1.1resigned1",
  "icons": {
    "128": "auto-cursor-128.png"
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "auto-cursor.js"
      ],
      "run_at": "document_end"
    }
  ],
  "manifest_version": 2,
  "browser_specific_settings": {
    "gecko": {
      "id": "auto-cursor@spyrosoft.com"
    }
  }
}