Focus on first input (keyboard shortcut)

Adds a shortcut that focuses the cursor on the first text input.

What is Focus on first input (keyboard shortcut)?

Focus on first input (keyboard shortcut) is a Chrome extension developed by https://mikesglitch.com, and its main feature is "Adds a shortcut that focuses the cursor on the first text input.".

Extension Screenshots

screenshot

Download Focus on first input (keyboard shortcut) Extension CRX File

Download Focus on first input (keyboard shortcut) extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        The default shortcut is 'Alt+S' - it is fully rebindable via the Chrome Extension shortcut menu (chrome://extensions/shortcuts).

To view the code you can visit my GitHub repository: https://github.com/mikesglitch/Focus-First-Input                    

Extension Basic Information

Name Focus on first input (keyboard shortcut) Focus on first input (keyboard shortcut)
ID ofngolgonfcpdanjehfjmcealkclchjg
Official URL https://chromewebstore.google.com/detail/focus-on-first-input-keyb/ofngolgonfcpdanjehfjmcealkclchjg
Description Adds a shortcut that focuses the cursor on the first text input.
File Size 5.38 KB
Installation Count 388
Current Version 0.1.8
Last Updated 2023-07-26
Publish Date 2018-05-07
Rating 4.64/5 Total 11 Ratings
Developer https://mikesglitch.com
Email [email protected]
Payment Type free
Extension Website https://github.com/mikesglitch/Focus-First-Input
Help Page URL https://github.com/mikesglitch/Focus-First-Input
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Focus on first input (keyboard shortcut)",
    "version": "0.1.8",
    "manifest_version": 2,
    "description": "Adds a shortcut that focuses the cursor on the first text input.",
    "icons": {
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "inj.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "commands": {
        "focus-first-input": {
            "suggested_key": {
                "default": "Alt+S"
            },
            "description": "Focus on the first input on the screen"
        }
    },
    "content_security_policy": "script-src 'self'; object-src 'self'"
}