Key Jump keyboard navigation

Hit-a-Hint style keyboard navigation. No mouse needed to click on links and stuff.

Key Jump keyboard navigation là gì?

Key Jump keyboard navigation là một tiện ích mở rộng Chrome được phát triển bởi Kenneth Sundqvist, và tính năng chính của nó là "Hit-a-Hint style keyboard navigation. No mouse needed to click on links and stuff.".

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

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Key Jump keyboard navigation

Tải xuống các tệp mở rộng Key Jump 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

                        Press , (comma) on your keyboard to show hints for all links, buttons, text fields and other things you can click or focus.

Press . (period) instead to open links in new tabs when they are clicked.

These shortcuts can be changed in the extension options.

Hints will be automatically triggered when possible. You can disable this in the extension options.

Press Escape to hide the hints.

If you find any bugs or have suggestions please submit a new issue here:
https://github.com/KennethSundqvist/key-jump-chrome-extension/issues                    

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

Tên Key Jump keyboard navigation Key Jump keyboard navigation
ID afdjhbmagopjlalgcjfclkgobaafamck
URL Chính Thức https://chromewebstore.google.com/detail/key-jump-keyboard-navigat/afdjhbmagopjlalgcjfclkgobaafamck
Mô tả Hit-a-Hint style keyboard navigation. No mouse needed to click on links and stuff.
Kích Thước Tệp 18.8 KB
Số Lần Cài Đặt 1,531
Phiên Bản Hiện Tại 5.4.0
Cập Nhật Lần Cuối 2021-12-29
Ngày Phát Hành 2019-12-28
Đánh Giá 4.57/5 Tổng số 21 Đánh Giá
Nhà Phát Triển Kenneth Sundqvist
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/KennethSundqvist/key-jump-chrome-extension/
URL Trang Trợ Giúp https://github.com/KennethSundqvist/key-jump-chrome-extension/
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Key Jump keyboard navigation",
    "description": "Hit-a-Hint style keyboard navigation. No mouse needed to click on links and stuff.",
    "version": "5.4.0",
    "author": "Kenneth Sundqvist ",
    "homepage_url": "https:\/\/github.com\/KennethSundqvist\/key-jump-browser-extension",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*",
                "ftp:\/\/*\/*"
            ],
            "all_frames": false,
            "run_at": "document_start",
            "js": [
                "bootstrap-state.js",
                "content.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    }
}