Key Jump keyboard navigation

Hit-a-Hint style keyboard navigation. No mouse needed to click on links and stuff.

Τι είναι το Key Jump keyboard navigation;

Το Key Jump keyboard navigation είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Kenneth Sundqvist, και η κύρια λειτουργία του είναι "Hit-a-Hint style keyboard navigation. No mouse needed to click on links and stuff.".

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

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Key Jump keyboard navigation

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

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

                        Press , (comma) on your keyboard to show hints for all links, buttons, text fields and other things you can click or focus.

Press . (period) instead to open links in new tabs when they are clicked.

These shortcuts can be changed in the extension options.

Hints will be automatically triggered when possible. You can disable this in the extension options.

Press Escape to hide the hints.

If you find any bugs or have suggestions please submit a new issue here:
https://github.com/KennethSundqvist/key-jump-chrome-extension/issues                    

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

Όνομα Key Jump keyboard navigation Key Jump keyboard navigation
ID afdjhbmagopjlalgcjfclkgobaafamck
Επίσημο URL https://chromewebstore.google.com/detail/key-jump-keyboard-navigat/afdjhbmagopjlalgcjfclkgobaafamck
Περιγραφή Hit-a-Hint style keyboard navigation. No mouse needed to click on links and stuff.
Μέγεθος Αρχείου 18.8 KB
Αριθμός Εγκαταστάσεων 1,531
Τρέχουσα Έκδοση 5.4.0
Τελευταία Ενημέρωση 2021-12-29
Ημερομηνία Δημοσίευσης 2019-12-28
Αξιολόγηση 4.57/5 Συνολικά 21 Αξιολογήσεις
Προγραμματιστής Kenneth Sundqvist
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/KennethSundqvist/key-jump-chrome-extension/
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/KennethSundqvist/key-jump-chrome-extension/
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Key Jump keyboard navigation",
    "description": "Hit-a-Hint style keyboard navigation. No mouse needed to click on links and stuff.",
    "version": "5.4.0",
    "author": "Kenneth Sundqvist ",
    "homepage_url": "https:\/\/github.com\/KennethSundqvist\/key-jump-browser-extension",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*",
                "ftp:\/\/*\/*"
            ],
            "all_frames": false,
            "run_at": "document_start",
            "js": [
                "bootstrap-state.js",
                "content.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    }
}