knavi

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

Wat is knavi?

knavi is een Chrome-extensie ontwikkeld door k_ui, en de belangrijkste functie is "Hit-a-Hint with magic key. You can click without the mouse by holding down the space key and hint text.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie knavi

Download knavi-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam knavi knavi
ID pfcgnkljgjobpkbgcifmpnhglafhkifg
Officiële URL https://chromewebstore.google.com/detail/knavi/pfcgnkljgjobpkbgcifmpnhglafhkifg
Beschrijving Hit-a-Hint with magic key. You can click without the mouse by holding down the space key and hint text.
Bestandsgrootte 255 KB
Aantal Installaties 282
Huidige Versie 3.2.0
Laatst Bijgewerkt 2023-12-16
Publicatiedatum 2020-02-18
Beoordeling 4.54/5 Totaal 24 Beoordelingen
Ontwikkelaar k_ui
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/kui/knavi
Help Pagina-URL https://github.com/kui/knavi/issues
Ondersteunde Talen 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"
            ]
        }
    ]
}