knavi

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

Qu'est-ce que knavi ?

knavi est une extension Chrome développée par k_ui, et sa fonction principale est "Hit-a-Hint with magic key. You can click without the mouse by holding down the space key and hint text.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension knavi

Téléchargez les fichiers d'extension knavi au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom knavi knavi
ID pfcgnkljgjobpkbgcifmpnhglafhkifg
URL Officiel 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.
Taille du Fichier 255 KB
Nombre d'Installations 282
Version Actuelle 3.2.0
Dernière Mise à Jour 2023-12-16
Date de Publication 2020-02-18
Évaluation 4.54/5 Total 24 Évaluations
Développeur k_ui
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/kui/knavi
URL de la Page d'Aide https://github.com/kui/knavi/issues
Langues Prises en Charge 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"
            ]
        }
    ]
}