AutoFocus Cursor

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

¿Qué es AutoFocus Cursor?

AutoFocus Cursor es una extensión de Chrome desarrollada por https://diamondium.com, y su función principal es "Automatically set the focus to a search text box when the page loads".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión AutoFocus Cursor

Descarga archivos de extensión AutoFocus Cursor en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre AutoFocus Cursor AutoFocus Cursor
ID jbhglhmfhghlfdbbcpbihelgbnigggha
URL Oficial https://chromewebstore.google.com/detail/autofocus-cursor/jbhglhmfhghlfdbbcpbihelgbnigggha
Descripción Automatically set the focus to a search text box when the page loads
Tamaño del Archivo 62.14 KB
Cantidad de Instalaciones 442
Versión Actual 2.02
Última Actualización 2020-07-25
Fecha de Publicación 2020-06-20
Calificación 3.78/5 Total de 9 Calificaciones
Desarrollador https://diamondium.com
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
    }
}