Go Focus Self

Go Focus Self

Press Ctrl+Shift+1 (customizable) when on a webpage with a text box to automatically focus the text box that is nearest the center of the screen. This works even when you have scrolled down the webpage as only visible text boxes get focused.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_extensionName__",
  "author": "Terry",
  "version": "0.2.1",
  "description": "__MSG_extensionDescription__",
  "manifest_version": 2,
  "default_locale": "en",
  "icons": {
    "24": "icon_24.png",
    "48": "icon_48.png",
    "96": "icon_96.png"
  },
  "commands": {
    "focus-text-box": {
      "suggested_key": {
        "default": "Ctrl+Shift+1"
      },
      "description": "Focus the text box on the current webpage nearest the center of the screen."
    }
  },
  "permissions": [
    "activeTab"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  }
}