Key Surfer

Navigate websites without using your mouse.

O que é Key Surfer?

Key Surfer é uma extensão do Chrome desenvolvida por J Delaney, e sua principal característica é "Navigate websites without using your mouse.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Key Surfer

Baixe arquivos de extensão Key Surfer 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

                        Click on links without your hands leaving your keyboard!

To use:
1. Type shift+space
2. Type in the link you want to click
3. Use the up/down arrow keys to select which link you want to click
4. Press enter to click it!

This project is open source as well! https://github.com/keysurfer/keysurfer                    

Informações Básicas da Extensão

Nome Key Surfer Key Surfer
ID aabnolighedpdbhpipfohakmnbbepnkn
URL Oficial https://chromewebstore.google.com/detail/key-surfer/aabnolighedpdbhpipfohakmnbbepnkn
Descrição Navigate websites without using your mouse.
Tamanho do Arquivo 50.39 KB
Contagem de Instalações 404
Versão Atual 0.3.10
Última Atualização 2017-03-02
Data de Publicação 2017-03-01
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor J Delaney
Tipo de Pagamento free
Site da Extensão https://github.com/keysurfer/keysurfer
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Key Surfer",
    "version": "0.3.10",
    "manifest_version": 2,
    "description": "Navigate websites without using your mouse.",
    "options_ui": {
        "page": "src\/options\/index.html",
        "chrome_style": true
    },
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*",
        "storage"
    ],
    "optional_permissions": [
        "file:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "css": [
                "src\/inject\/inject.css"
            ]
        },
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "js\/mousetrap.min.js",
                "js\/underscore.min.js",
                "js\/jquery.min.js",
                "src\/inject\/overlay.js",
                "src\/inject\/inject.js"
            ]
        }
    ]
}