Keyboard Navigation

Keyboard based link navigation like Conkeror

Keyboard Navigationคืออะไร?

Keyboard Navigation เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://flurp.de และคุณลักษณะหลักของมันคือ "Keyboard based link navigation like Conkeror"

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

screenshot

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

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

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

                        Follow links on page just with a few key strokes. No mouse interaction needed.

Especially useful for people who are typing a lot and don't want to switch one hand off the keyboard to the mouse. 

Inspired by the same functions in Conkeror, a keyboard based browser.                    

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

ชื่อ Keyboard Navigation Keyboard Navigation
ID pbeglgibmimhhoddioagekdgljpdekdg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/keyboard-navigation/pbeglgibmimhhoddioagekdgljpdekdg
คำอธิบาย Keyboard based link navigation like Conkeror
ขนาดไฟล์ 38.63 KB
จำนวนการติดตั้ง 38
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2016-09-04
วันที่เผยแพร่ 2016-09-04
คะแนน 4.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา https://flurp.de
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/dermatthias/keyboardnav
URL หน้าช่วยเหลือ https://github.com/dermatthias/keyboardnav/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Keyboard Navigation",
    "short_name": "keyboardnav",
    "description": "Keyboard based link navigation like Conkeror",
    "homepage_url": "https:\/\/github.com\/dermatthias\/keyboardnav",
    "version": "1.0",
    "icons": {
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "jquery-3.1.0.min.js",
                "contentscript.js"
            ]
        }
    ],
    "commands": {
        "highlight-links": {
            "suggested_key": {
                "default": "Ctrl+Space"
            },
            "description": "Highlight links on a webpage"
        }
    }
}