knavi

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

Cos'è knavi?

knavi è un'estensione di Chrome sviluppata da k_ui, e la sua funzione principale è "Hit-a-Hint with magic key. You can click without the mouse by holding down the space key and hint text.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione knavi

Scarica i file di estensione knavi in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome knavi knavi
ID pfcgnkljgjobpkbgcifmpnhglafhkifg
URL Ufficiale https://chromewebstore.google.com/detail/knavi/pfcgnkljgjobpkbgcifmpnhglafhkifg
Descrizione Hit-a-Hint with magic key. You can click without the mouse by holding down the space key and hint text.
Dimensione del File 255 KB
Conteggio Installazioni 282
Versione Corrente 3.2.0
Ultimo Aggiornamento 2023-12-16
Data di Pubblicazione 2020-02-18
Valutazione 4.54/5 Totale 24 Valutazioni
Sviluppatore k_ui
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/kui/knavi
URL della Pagina di Aiuto https://github.com/kui/knavi/issues
Lingue Supportate 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"
            ]
        }
    ]
}