Key Jump keyboard navigation

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

Wat is Key Jump keyboard navigation?

Key Jump keyboard navigation is een Chrome-extensie ontwikkeld door Kenneth Sundqvist, en de belangrijkste functie is "Hit-a-Hint style keyboard navigation. No mouse needed to click on links and stuff.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Key Jump keyboard navigation

Download Key Jump keyboard navigation-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Key Jump keyboard navigation Key Jump keyboard navigation
ID afdjhbmagopjlalgcjfclkgobaafamck
Officiële URL https://chromewebstore.google.com/detail/key-jump-keyboard-navigat/afdjhbmagopjlalgcjfclkgobaafamck
Beschrijving Hit-a-Hint style keyboard navigation. No mouse needed to click on links and stuff.
Bestandsgrootte 18.8 KB
Aantal Installaties 1,531
Huidige Versie 5.4.0
Laatst Bijgewerkt 2021-12-29
Publicatiedatum 2019-12-28
Beoordeling 4.57/5 Totaal 21 Beoordelingen
Ontwikkelaar Kenneth Sundqvist
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/KennethSundqvist/key-jump-chrome-extension/
Help Pagina-URL https://github.com/KennethSundqvist/key-jump-chrome-extension/
Ondersteunde Talen 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]"
        }
    }
}