Focus on first input (keyboard shortcut)

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

Co je Focus on first input (keyboard shortcut)?

Focus on first input (keyboard shortcut) je rozšíření Chrome vyvinuté https://mikesglitch.com, a jeho hlavní funkcí je „Adds a shortcut that focuses the cursor on the first text input.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Focus on first input (keyboard shortcut)

Stáhněte si soubory rozšíření Focus on first input (keyboard shortcut) ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Focus on first input (keyboard shortcut) Focus on first input (keyboard shortcut)
ID ofngolgonfcpdanjehfjmcealkclchjg
Oficiální URL https://chromewebstore.google.com/detail/focus-on-first-input-keyb/ofngolgonfcpdanjehfjmcealkclchjg
Popis Adds a shortcut that focuses the cursor on the first text input.
Velikost souboru 5.38 KB
Počet instalací 388
Aktuální Verze 0.1.8
Poslední Aktualizace 2023-07-26
Datum Vydání 2018-05-07
Hodnocení 4.64/5 Celkem 11 Hodnocení
Vývojář https://mikesglitch.com
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/mikesglitch/Focus-First-Input
URL Stránky Nápovědy https://github.com/mikesglitch/Focus-First-Input
Podporované Jazyky 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'"
}