Focus on first input (keyboard shortcut)

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

¿Qué es Focus on first input (keyboard shortcut)?

Focus on first input (keyboard shortcut) es una extensión de Chrome desarrollada por https://mikesglitch.com, y su función principal es "Adds a shortcut that focuses the cursor on the first text input.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Focus on first input (keyboard shortcut)

Descarga archivos de extensión Focus on first input (keyboard shortcut) 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

                        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                    

Información Básica de la Extensión

Nombre 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
Descripción Adds a shortcut that focuses the cursor on the first text input.
Tamaño del Archivo 5.38 KB
Cantidad de Instalaciones 388
Versión Actual 0.1.8
Última Actualización 2023-07-26
Fecha de Publicación 2018-05-07
Calificación 4.64/5 Total de 11 Calificaciones
Desarrollador https://mikesglitch.com
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/mikesglitch/Focus-First-Input
URL de la Página de Ayuda https://github.com/mikesglitch/Focus-First-Input
Idiomas Soportados 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'"
}