Key Jump keyboard navigation

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

Qu'est-ce que Key Jump keyboard navigation ?

Key Jump keyboard navigation est une extension Chrome développée par Kenneth Sundqvist, et sa fonction principale est "Hit-a-Hint style keyboard navigation. No mouse needed to click on links and stuff.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Key Jump keyboard navigation

Téléchargez les fichiers d'extension Key Jump keyboard navigation 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

                        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                    

Informations de Base sur l'Extension

Nom Key Jump keyboard navigation Key Jump keyboard navigation
ID afdjhbmagopjlalgcjfclkgobaafamck
URL Officiel https://chromewebstore.google.com/detail/key-jump-keyboard-navigat/afdjhbmagopjlalgcjfclkgobaafamck
Description Hit-a-Hint style keyboard navigation. No mouse needed to click on links and stuff.
Taille du Fichier 18.8 KB
Nombre d'Installations 1,531
Version Actuelle 5.4.0
Dernière Mise à Jour 2021-12-29
Date de Publication 2019-12-28
Évaluation 4.57/5 Total 21 Évaluations
Développeur Kenneth Sundqvist
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/KennethSundqvist/key-jump-chrome-extension/
URL de la Page d'Aide https://github.com/KennethSundqvist/key-jump-chrome-extension/
Langues Prises en Charge 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]"
        }
    }
}