Key Surfer

Navigate websites without using your mouse.

Apa itu Key Surfer?

Key Surfer adalah ekstensi Chrome yang dikembangkan oleh J Delaney, dan fitur utamanya adalah "Navigate websites without using your mouse.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Key Surfer

Unduh file ekstensi Key Surfer dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Key Surfer Key Surfer
ID aabnolighedpdbhpipfohakmnbbepnkn
URL Resmi https://chromewebstore.google.com/detail/key-surfer/aabnolighedpdbhpipfohakmnbbepnkn
Deskripsi Navigate websites without using your mouse.
Ukuran File 50.39 KB
Jumlah Instalasi 404
Versi Saat Ini 0.3.10
Terakhir Diperbarui 2017-03-02
Tanggal Publikasi 2017-03-01
Penilaian 5.00/5 Total 1 Penilaian
Pengembang J Delaney
Tipe Pembayaran free
Situs Ekstensi https://github.com/keysurfer/keysurfer
Bahasa yang Didukung 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"
            ]
        }
    ]
}