Focus input element

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

O que é Focus input element?

Focus input element é uma extensão do Chrome desenvolvida por sa1hon, e sua principal característica é "Focuses on the next or previous HTML input element when the shortcut key is pressed.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Focus input element

Baixe arquivos de extensão Focus input element no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Focus input element Focus input element
ID pehdagiekdjhnojgbbcnckoojejiojgn
URL Oficial https://chromewebstore.google.com/detail/focus-input-element/pehdagiekdjhnojgbbcnckoojejiojgn
Descrição Focuses on the next or previous HTML input element when the shortcut key is pressed.
Tamanho do Arquivo 40.31 KB
Contagem de Instalações 356
Versão Atual 1.2.1
Última Atualização 2023-03-30
Data de Publicação 2020-01-01
Classificação 5.00/5 Total de 9 Avaliações
Desenvolvedor sa1hon
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/saihon/focus-input-element
Idiomas Suportados 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
}