Focus input element

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

Cos'è Focus input element?

Focus input element è un'estensione di Chrome sviluppata da sa1hon, e la sua funzione principale è "Focuses on the next or previous HTML input element when the shortcut key is pressed.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Focus input element

Scarica i file di estensione Focus input element 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

                        Overview:
Press a shortcut key to focus on the input field on the web page.

The default shortcut key:

- Next input field: F2
- Previous input field: Shift+F2
- Unfocus: F4

Feature:

- You can press it repeatedly to move to the next or previous field.
- You can focus the closest input field in the active area.
- You can check the location of the field with marker.
- These settings can be changed on the Options page.                    

Informazioni di Base sull'Estensione

Nome Focus input element Focus input element
ID pehdagiekdjhnojgbbcnckoojejiojgn
URL Ufficiale https://chromewebstore.google.com/detail/focus-input-element/pehdagiekdjhnojgbbcnckoojejiojgn
Descrizione Focuses on the next or previous HTML input element when the shortcut key is pressed.
Dimensione del File 40.31 KB
Conteggio Installazioni 356
Versione Corrente 1.2.1
Ultimo Aggiornamento 2023-03-30
Data di Pubblicazione 2020-01-01
Valutazione 5.00/5 Totale 9 Valutazioni
Sviluppatore sa1hon
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/saihon/focus-input-element
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "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": {
        "128": "icons\/icon-128.png",
        "48": "icons\/icon-48.png",
        "19": "icons\/icon-19.png",
        "16": "icons\/icon-16.png"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "js\/background.bundle.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "run_at": "document_end",
            "matches": [
                ""
            ],
            "js": [
                "js\/contentScript.bundle.js"
            ]
        }
    ],
    "options_ui": {
        "chrome_style": true,
        "open_in_tab": true,
        "page": "options.html"
    },
    "manifest_version": 2
}