Keyboard Shortcuts to Reorder Tabs

Chrome extension adding shortcuts for moving tabs around

Keyboard Shortcuts to Reorder Tabs là gì?

Keyboard Shortcuts to Reorder Tabs là một tiện ích mở rộng Chrome được phát triển bởi Michael Fester, và tính năng chính của nó là "Chrome extension adding shortcuts for moving tabs around".

Ả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 Keyboard Shortcuts to Reorder Tabs

Tải xuống các tệp mở rộng Keyboard Shortcuts to Reorder Tabs 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

                        The extension consists of four keyboard shortcuts (VIM style):

* Alt-Shift-L: Move Tab Right
* Alt-Shift-H: Move Tab Left
* Alt-Shift-K: Move Tab to Start Position
* Alt-Shift-J: Move Tab to End Position

A separate extension, tabasco, adds the following shortcuts to Chrome

* Close Other Tabs
* Close Tabs to the Right
* Pin Tab

Chrome extensions currently only allow for a maximum of four shortcuts, which is why they are not included in tabloid.

You can fetch tabasco here: https://chrome.google.com/webstore/detail/tabasco/dkoadhojigekhckndaehenfbhcgfeepl                    

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

Tên Keyboard Shortcuts to Reorder Tabs Keyboard Shortcuts to Reorder Tabs
ID femidpfpildjfepkcaodpalpakgadjih
URL Chính Thức https://chromewebstore.google.com/detail/keyboard-shortcuts-to-reo/femidpfpildjfepkcaodpalpakgadjih
Mô tả Chrome extension adding shortcuts for moving tabs around
Kích Thước Tệp 3.75 KB
Số Lần Cài Đặt 355
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2023-10-27
Ngày Phát Hành 2013-01-23
Đánh Giá 4.25/5 Tổng số 16 Đánh Giá
Nhà Phát Triển Michael Fester
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://michaelfester.com
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Keyboard Shortcuts to Reorder Tabs",
    "version": "1.0.0",
    "manifest_version": 3,
    "description": "Chrome extension adding shortcuts for moving tabs around",
    "background": {
        "service_worker": "background.js"
    },
    "commands": {
        "move-tab-right": {
            "suggested_key": {
                "default": "Alt+Shift+L"
            },
            "description": "Move Tab to the right"
        },
        "move-tab-left": {
            "suggested_key": {
                "default": "Alt+Shift+H"
            },
            "description": "Move Tab to the left"
        },
        "move-tab-first": {
            "suggested_key": {
                "default": "Alt+Shift+K"
            },
            "description": "Move Tab to first position"
        },
        "move-tab-last": {
            "suggested_key": {
                "default": "Alt+Shift+J"
            },
            "description": "Move Tab to last position"
        }
    }
}