Key Jump keyboard navigation

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

O que é Key Jump keyboard navigation?

Key Jump keyboard navigation é uma extensão do Chrome desenvolvida por Kenneth Sundqvist, e sua principal característica é "Hit-a-Hint style keyboard navigation. No mouse needed to click on links and stuff.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Key Jump keyboard navigation

Baixe arquivos de extensão Key Jump keyboard navigation no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Key Jump keyboard navigation Key Jump keyboard navigation
ID afdjhbmagopjlalgcjfclkgobaafamck
URL Oficial https://chromewebstore.google.com/detail/key-jump-keyboard-navigat/afdjhbmagopjlalgcjfclkgobaafamck
Descrição Hit-a-Hint style keyboard navigation. No mouse needed to click on links and stuff.
Tamanho do Arquivo 18.8 KB
Contagem de Instalações 1,531
Versão Atual 5.4.0
Última Atualização 2021-12-29
Data de Publicação 2019-12-28
Classificação 4.57/5 Total de 21 Avaliações
Desenvolvedor Kenneth Sundqvist
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/KennethSundqvist/key-jump-chrome-extension/
URL da Página de Ajuda https://github.com/KennethSundqvist/key-jump-chrome-extension/
Idiomas Suportados 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]"
        }
    }
}