Keyboard Navigation

Keyboard based link navigation like Conkeror

Keyboard Navigation là gì?

Keyboard Navigation là một tiện ích mở rộng Chrome được phát triển bởi https://flurp.de, và tính năng chính của nó là "Keyboard based link navigation like Conkeror".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Keyboard Navigation

Tải xuống các tệp mở rộng Keyboard Navigation dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Keyboard Navigation Keyboard Navigation
ID pbeglgibmimhhoddioagekdgljpdekdg
URL Chính Thức https://chromewebstore.google.com/detail/keyboard-navigation/pbeglgibmimhhoddioagekdgljpdekdg
Mô tả Keyboard based link navigation like Conkeror
Kích Thước Tệp 38.63 KB
Số Lần Cài Đặt 38
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2016-09-04
Ngày Phát Hành 2016-09-04
Đánh Giá 4.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://flurp.de
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/dermatthias/keyboardnav
URL Trang Trợ Giúp https://github.com/dermatthias/keyboardnav/issues
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    }
}