knavi

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

Τι είναι το knavi;

Το knavi είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον k_ui, και η κύρια λειτουργία του είναι "Hit-a-Hint with magic key. You can click without the mouse by holding down the space key and hint text.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης knavi

Λήψη αρχείων επέκτασης knavi σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα knavi knavi
ID pfcgnkljgjobpkbgcifmpnhglafhkifg
Επίσημο URL https://chromewebstore.google.com/detail/knavi/pfcgnkljgjobpkbgcifmpnhglafhkifg
Περιγραφή Hit-a-Hint with magic key. You can click without the mouse by holding down the space key and hint text.
Μέγεθος Αρχείου 255 KB
Αριθμός Εγκαταστάσεων 282
Τρέχουσα Έκδοση 3.2.0
Τελευταία Ενημέρωση 2023-12-16
Ημερομηνία Δημοσίευσης 2020-02-18
Αξιολόγηση 4.54/5 Συνολικά 24 Αξιολογήσεις
Προγραμματιστής k_ui
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/kui/knavi
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/kui/knavi/issues
Υποστηριζόμενες Γλώσσες 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"
            ]
        }
    ]
}