knavi

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

What is knavi?

knavi is a Chrome extension developed by k_ui, and its main feature is "Hit-a-Hint with magic key. You can click without the mouse by holding down the space key and hint text.".

Extension Screenshots

screenshot
screenshot

Download knavi Extension CRX File

Download knavi extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name knavi knavi
ID pfcgnkljgjobpkbgcifmpnhglafhkifg
Official URL https://chromewebstore.google.com/detail/knavi/pfcgnkljgjobpkbgcifmpnhglafhkifg
Description Hit-a-Hint with magic key. You can click without the mouse by holding down the space key and hint text.
File Size 255 KB
Installation Count 282
Current Version 3.2.0
Last Updated 2023-12-16
Publish Date 2020-02-18
Rating 4.54/5 Total 24 Ratings
Developer k_ui
Email [email protected]
Payment Type free
Extension Website https://github.com/kui/knavi
Help Page URL https://github.com/kui/knavi/issues
Supported Languages 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"
            ]
        }
    ]
}