Tab Keys

Allows you to set keyboard shortcuts for certain tab actions such as selecting the next/prev tab.

Tab Keys là gì?

Tab Keys là một tiện ích mở rộng Chrome được phát triển bởi thekiteeatingtree, và tính năng chính của nó là "Allows you to set keyboard shortcuts for certain tab actions such as selecting the next/prev tab.".

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

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

                        Allows you to set keyboard shortcuts for selecting the next or previous tab.  Also offers the ability to add a shortcut to pin tabs.  

The default shortcuts for next/prev tab are Ctrl+Right/Left.  To edit the shortcuts click on the extension icon and hit 'Manage extensions'.  Scroll to the bottom of the page and click 'Keyboard shortcuts'.  This extensions shortcuts will be editable under the 'Tab Keys' header.                    

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

Tên Tab Keys Tab Keys
ID fmmkbjckdjobofhoikpldcahemfccffo
URL Chính Thức https://chrome.google.com/webstore/detail/tab-keys/fmmkbjckdjobofhoikpldcahemfccffo
Mô tả Allows you to set keyboard shortcuts for certain tab actions such as selecting the next/prev tab.
Kích Thước Tệp 4.5 KB
Số Lần Cài Đặt 21
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2017-07-27
Ngày Phát Hành 2017-07-27
Nhà Phát Triển thekiteeatingtree
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/TheKiteEatingTree/TabKeys
URL Trang Trợ Giúp https://github.com/TheKiteEatingTree/TabKeys/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tab Keys",
    "description": "Allows you to set keyboard shortcuts for certain tab actions such as selecting the next\/prev tab.",
    "version": "1.0",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "commands": {
        "next-tab": {
            "suggested_key": {
                "default": "Ctrl+Right"
            },
            "description": "Select the next tab"
        },
        "prev-tab": {
            "suggested_key": {
                "default": "Ctrl+Left"
            },
            "description": "Select the previous tab"
        },
        "pin-tab": {
            "suggested_key": {
                "default": "Ctrl+Shift+P"
            },
            "description": "Pin the current tab"
        }
    }
}