Key Jump keyboard navigation

Hit-a-Hint style keyboard navigation. No mouse needed to click on links and stuff.

¿Qué es Key Jump keyboard navigation?

Key Jump keyboard navigation es una extensión de Chrome desarrollada por Kenneth Sundqvist, y su función principal es "Hit-a-Hint style keyboard navigation. No mouse needed to click on links and stuff.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Key Jump keyboard navigation

Descarga archivos de extensión Key Jump keyboard navigation 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

                        Press , (comma) on your keyboard to show hints for all links, buttons, text fields and other things you can click or focus.

Press . (period) instead to open links in new tabs when they are clicked.

These shortcuts can be changed in the extension options.

Hints will be automatically triggered when possible. You can disable this in the extension options.

Press Escape to hide the hints.

If you find any bugs or have suggestions please submit a new issue here:
https://github.com/KennethSundqvist/key-jump-chrome-extension/issues                    

Información Básica de la Extensión

Nombre Key Jump keyboard navigation Key Jump keyboard navigation
ID afdjhbmagopjlalgcjfclkgobaafamck
URL Oficial https://chromewebstore.google.com/detail/key-jump-keyboard-navigat/afdjhbmagopjlalgcjfclkgobaafamck
Descripción Hit-a-Hint style keyboard navigation. No mouse needed to click on links and stuff.
Tamaño del Archivo 18.8 KB
Cantidad de Instalaciones 1,531
Versión Actual 5.4.0
Última Actualización 2021-12-29
Fecha de Publicación 2019-12-28
Calificación 4.57/5 Total de 21 Calificaciones
Desarrollador Kenneth Sundqvist
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/KennethSundqvist/key-jump-chrome-extension/
URL de la Página de Ayuda https://github.com/KennethSundqvist/key-jump-chrome-extension/
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Key Jump keyboard navigation",
    "description": "Hit-a-Hint style keyboard navigation. No mouse needed to click on links and stuff.",
    "version": "5.4.0",
    "author": "Kenneth Sundqvist ",
    "homepage_url": "https:\/\/github.com\/KennethSundqvist\/key-jump-browser-extension",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*",
                "ftp:\/\/*\/*"
            ],
            "all_frames": false,
            "run_at": "document_start",
            "js": [
                "bootstrap-state.js",
                "content.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    }
}