Focus on first input (keyboard shortcut)

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

Cos'è Focus on first input (keyboard shortcut)?

Focus on first input (keyboard shortcut) è un'estensione di Chrome sviluppata da https://mikesglitch.com, e la sua funzione principale è "Adds a shortcut that focuses the cursor on the first text input.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Focus on first input (keyboard shortcut)

Scarica i file di estensione Focus on first input (keyboard shortcut) in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Focus on first input (keyboard shortcut) Focus on first input (keyboard shortcut)
ID ofngolgonfcpdanjehfjmcealkclchjg
URL Ufficiale https://chromewebstore.google.com/detail/focus-on-first-input-keyb/ofngolgonfcpdanjehfjmcealkclchjg
Descrizione Adds a shortcut that focuses the cursor on the first text input.
Dimensione del File 5.38 KB
Conteggio Installazioni 388
Versione Corrente 0.1.8
Ultimo Aggiornamento 2023-07-26
Data di Pubblicazione 2018-05-07
Valutazione 4.64/5 Totale 11 Valutazioni
Sviluppatore https://mikesglitch.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/mikesglitch/Focus-First-Input
URL della Pagina di Aiuto https://github.com/mikesglitch/Focus-First-Input
Lingue Supportate 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'"
}