Key Jump keyboard navigation

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

Hvad er Key Jump keyboard navigation?

Key Jump keyboard navigation er en Chrome-udvidelse udviklet af Kenneth Sundqvist, og dens hovedfunktion er "Hit-a-Hint style keyboard navigation. No mouse needed to click on links and stuff.".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Key Jump keyboard navigation-udvidelses-CRX-fil

Download Key Jump keyboard navigation-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Key Jump keyboard navigation Key Jump keyboard navigation
ID afdjhbmagopjlalgcjfclkgobaafamck
Officiel URL https://chromewebstore.google.com/detail/key-jump-keyboard-navigat/afdjhbmagopjlalgcjfclkgobaafamck
Beskrivelse Hit-a-Hint style keyboard navigation. No mouse needed to click on links and stuff.
Filstørrelse 18.8 KB
Antal Installationer 1,531
Nuværende Version 5.4.0
Senest Opdateret 2021-12-29
Udgivelsesdato 2019-12-28
Bedømmelse 4.57/5 Samlet 21 Bedømmelser
Udvikler Kenneth Sundqvist
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/KennethSundqvist/key-jump-chrome-extension/
Hjælpeside-URL https://github.com/KennethSundqvist/key-jump-chrome-extension/
Understøttede Sprog 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]"
        }
    }
}