Focus input element

Focus input element

Focuses on the next or previous HTML input element when the shortcut key is pressed.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Focus input element",
  "version": "1.2.1",
  "description": "Focuses on the next or previous HTML input element when the shortcut key is pressed.",
  "icons": {
    "16": "icons/icon-16.png",
    "19": "icons/icon-19.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "permissions": [
    "storage"
  ],
  "background": {
    "scripts": [
      "js/background.bundle.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": true,
      "run_at": "document_end",
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/contentScript.bundle.js"
      ]
    }
  ],
  "options_ui": {
    "chrome_style": true,
    "open_in_tab": true,
    "page": "options.html"
  },
  "manifest_version": 2,
  "browser_specific_settings": {
    "gecko": {
      "id": "{8221b638-0d82-43e0-a040-0e19dc0397d7}"
    }
  }
}