Cycle Input Focus Plus

Cycle Input Focus Plus

Cycle through (text) inputs with a keycombo. Find and focus username and password fields (for password managers, like KeePass).

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "author": "Thomas Henlich",
  "version": "3.0.1",
  "default_locale": "en",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "commands": {
    "previousInput": {
      "suggested_key": {
        "default": "Alt+Shift+X"
      },
      "description": "__MSG_functionPrevious__"
    },
    "nextInput": {
      "suggested_key": {
        "default": "Alt+Shift+C"
      },
      "description": "__MSG_functionNext__"
    },
    "firstUserNameInput": {
      "suggested_key": {
        "default": "Alt+Shift+U"
      },
      "description": "__MSG_functionFirstLogin__"
    },
    "cyclePWInput": {
      "suggested_key": {
        "default": "Alt+Shift+P"
      },
      "description": "__MSG_functionCyclePassword__"
    },
    "cycleUserNameInput": {
      "description": "__MSG_functionCycleLogin__"
    },
    "firstPWInput": {
      "description": "__MSG_functionFirstPassword__"
    },
    "firstInput": {
      "description": "__MSG_functionFirst__"
    }
  },
  "permissions": [
    "activeTab"
  ]
}