Key Surfer

Navigate websites without using your mouse.

Key Surferคืออะไร?

Key Surfer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย J Delaney และคุณลักษณะหลักของมันคือ "Navigate websites without using your mouse."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Key Surfer

ดาวน์โหลดไฟล์ส่วนขยาย Key Surfer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Key Surfer Key Surfer
ID aabnolighedpdbhpipfohakmnbbepnkn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/key-surfer/aabnolighedpdbhpipfohakmnbbepnkn
คำอธิบาย Navigate websites without using your mouse.
ขนาดไฟล์ 50.39 KB
จำนวนการติดตั้ง 404
เวอร์ชันปัจจุบัน 0.3.10
อัปเดตครั้งล่าสุด 2017-03-02
วันที่เผยแพร่ 2017-03-01
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา J Delaney
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/keysurfer/keysurfer
ภาษาที่รองรับ 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"
            ]
        }
    ]
}