KeyboardMode

This extension allows you to open links with your Keyboard.

KeyboardMode là gì?

KeyboardMode là một tiện ích mở rộng Chrome được phát triển bởi https://hanneshofer.github.io/KeyboardMode, và tính năng chính của nó là "This extension allows you to open links with your Keyboard.".

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

screenshot
screenshot
screenshot

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

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

                        This extension allows you to control chrome with your keyboard.
With the alreay knows hotkeys it is already possible to control most parts of chrome (ex. Enter new URL, go back, go forward)
after pressing a certain, adjustable, hotkey this extension shows links hints (see screenshot)
when the shown characters in the link hints are pressed the relevant link will be opend.
with "meta" keys it is possible to open certain links in new tab, new window or in new incognito window.                    

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

Tên KeyboardMode KeyboardMode
ID gceomdpidnmgddihieakclncpopaiplc
URL Chính Thức https://chromewebstore.google.com/detail/keyboardmode/gceomdpidnmgddihieakclncpopaiplc
Mô tả This extension allows you to open links with your Keyboard.
Kích Thước Tệp 44.36 KB
Số Lần Cài Đặt 11
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2014-08-19
Ngày Phát Hành 2014-08-19
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển https://hanneshofer.github.io/KeyboardMode
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ de,en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extName__",
    "default_locale": "en",
    "description": "This extension allows you to open links with your Keyboard.",
    "icons": {
        "128": "icon.png"
    },
    "version": "0.1",
    "options_page": "options.html",
    "permissions": [
        "",
        "tabs",
        "storage"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "lib\/background.js"
        ]
    },
    "commands": {
        "activate_link_hints": {
            "suggested_key": {
                "default": "Ctrl+M",
                "mac": "Command+M"
            },
            "description": "Link Hints anzeigen"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "lib\/keyboard_utils.js",
                "lib\/dom_utils.js",
                "lib\/option_utils.js",
                "link_hints.js",
                "command.js"
            ],
            "css": [
                "keyboardmode.css"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ]
}