Key Surfer

Navigate websites without using your mouse.

Cos'è Key Surfer?

Key Surfer è un'estensione di Chrome sviluppata da J Delaney, e la sua funzione principale è "Navigate websites without using your mouse.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Key Surfer

Scarica i file di estensione Key Surfer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Key Surfer Key Surfer
ID aabnolighedpdbhpipfohakmnbbepnkn
URL Ufficiale https://chromewebstore.google.com/detail/key-surfer/aabnolighedpdbhpipfohakmnbbepnkn
Descrizione Navigate websites without using your mouse.
Dimensione del File 50.39 KB
Conteggio Installazioni 404
Versione Corrente 0.3.10
Ultimo Aggiornamento 2017-03-02
Data di Pubblicazione 2017-03-01
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore J Delaney
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/keysurfer/keysurfer
Lingue Supportate 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"
            ]
        }
    ]
}