knavi

Hit-a-Hint with magic key. You can click without the mouse by holding down the space key and hint text.

¿Qué es knavi?

knavi es una extensión de Chrome desarrollada por k_ui, y su función principal es "Hit-a-Hint with magic key. You can click without the mouse by holding down the space key and hint text.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión knavi

Descarga archivos de extensión knavi 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

                        This is for clicking links and buttons with keyboard only. Pressing space key and hint key simulates clicking links and buttons.

By releasing space key with modifier keys such as `Ctrl` or `Alt`, you can open links in new tab or new window.

The default magic key is space key, but you can change it in options.                    

Información Básica de la Extensión

Nombre knavi knavi
ID pfcgnkljgjobpkbgcifmpnhglafhkifg
URL Oficial https://chromewebstore.google.com/detail/knavi/pfcgnkljgjobpkbgcifmpnhglafhkifg
Descripción Hit-a-Hint with magic key. You can click without the mouse by holding down the space key and hint text.
Tamaño del Archivo 255 KB
Cantidad de Instalaciones 282
Versión Actual 3.2.0
Última Actualización 2023-12-16
Fecha de Publicación 2020-02-18
Calificación 4.54/5 Total de 24 Calificaciones
Desarrollador k_ui
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/kui/knavi
URL de la Página de Ayuda https://github.com/kui/knavi/issues
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "knavi",
    "version": "3.2.0",
    "description": "Hit-a-Hint with magic key. You can click without the mouse by holding down the space key and hint text.",
    "author": "Keiichiro Ui",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-all.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "content-root.js"
            ],
            "run_at": "document_start"
        }
    ],
    "content_security_policy": {
        "extension_pages": "default-src 'self'"
    },
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        ""
    ],
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "*.js.map"
            ]
        }
    ]
}