Focus on first input (keyboard shortcut)

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

O que é Focus on first input (keyboard shortcut)?

Focus on first input (keyboard shortcut) é uma extensão do Chrome desenvolvida por https://mikesglitch.com, e sua principal característica é "Adds a shortcut that focuses the cursor on the first text input.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Focus on first input (keyboard shortcut)

Baixe arquivos de extensão Focus on first input (keyboard shortcut) 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

                        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                    

Informações Básicas da Extensão

Nome Focus on first input (keyboard shortcut) Focus on first input (keyboard shortcut)
ID ofngolgonfcpdanjehfjmcealkclchjg
URL Oficial https://chromewebstore.google.com/detail/focus-on-first-input-keyb/ofngolgonfcpdanjehfjmcealkclchjg
Descrição Adds a shortcut that focuses the cursor on the first text input.
Tamanho do Arquivo 5.38 KB
Contagem de Instalações 388
Versão Atual 0.1.8
Última Atualização 2023-07-26
Data de Publicação 2018-05-07
Classificação 4.64/5 Total de 11 Avaliações
Desenvolvedor https://mikesglitch.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/mikesglitch/Focus-First-Input
URL da Página de Ajuda https://github.com/mikesglitch/Focus-First-Input
Idiomas Suportados 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'"
}