knavi

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

Was ist knavi?

knavi ist eine Chrome-Erweiterung, die von k_ui entwickelt wurde, und ihr Hauptmerkmal ist "Hit-a-Hint with magic key. You can click without the mouse by holding down the space key and hint text.".

Erweiterungsscreenshots

screenshot
screenshot

knavi-Erweiterungs-CRX-Datei herunterladen

Laden Sie knavi-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name knavi knavi
ID pfcgnkljgjobpkbgcifmpnhglafhkifg
Offizielle URL https://chromewebstore.google.com/detail/knavi/pfcgnkljgjobpkbgcifmpnhglafhkifg
Beschreibung Hit-a-Hint with magic key. You can click without the mouse by holding down the space key and hint text.
Dateigröße 255 KB
Installationsanzahl 282
Aktuelle Version 3.2.0
Letztes Update 2023-12-16
Veröffentlichungsdatum 2020-02-18
Bewertung 4.54/5 Insgesamt 24 Bewertungen
Entwickler k_ui
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/kui/knavi
Hilfeseite URL https://github.com/kui/knavi/issues
Unterstützte Sprachen 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"
            ]
        }
    ]
}