AutoFocus Cursor

Automatically set the focus to a search text box when the page loads

O que é AutoFocus Cursor?

AutoFocus Cursor é uma extensão do Chrome desenvolvida por https://diamondium.com, e sua principal característica é "Automatically set the focus to a search text box when the page loads".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão AutoFocus Cursor

Baixe arquivos de extensão AutoFocus Cursor 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

                        You no longer have to manually click a text box before searching!

Useful on websites where searching is the first thing you want to do (ex. Amazon).

Your cursor will automatically be placed in the first visible text box once the website loads.                    

Informações Básicas da Extensão

Nome AutoFocus Cursor AutoFocus Cursor
ID jbhglhmfhghlfdbbcpbihelgbnigggha
URL Oficial https://chromewebstore.google.com/detail/autofocus-cursor/jbhglhmfhghlfdbbcpbihelgbnigggha
Descrição Automatically set the focus to a search text box when the page loads
Tamanho do Arquivo 62.14 KB
Contagem de Instalações 442
Versão Atual 2.02
Última Atualização 2020-07-25
Data de Publicação 2020-06-20
Classificação 3.78/5 Total de 9 Avaliações
Desenvolvedor https://diamondium.com
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AutoFocus Cursor",
    "description": "Automatically set the focus to a search text box when the page loads",
    "permissions": [
        "storage",
        "tabs"
    ],
    "version": "2.02",
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/auto-focus-min.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_popup": "autofocuscursor-settings.html"
    }
}