Keyboard Shortcuts to Close Other/Right Tabs

Chrome extension adding shortcuts for closing and pinning tabs.

Keyboard Shortcuts to Close Other/Right Tabs là gì?

Keyboard Shortcuts to Close Other/Right 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 closing and pinning tabs.".

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

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Keyboard Shortcuts to Close Other/Right Tabs

Tải xuống các tệp mở rộng Keyboard Shortcuts to Close Other/Right 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 three keyboard shortcuts:

* Alt-Shift-O: Close Other Tabs
* Alt-Shift-R: Close Tabs to the Right
* Alt-Shift-P: Pin Tab

Note: A separate extension, tabloid, adds the following shortcuts to Chrome

* Move Tab Right
* Move Tab Left
* Move Tab to First Position
* Move Tab to Last Position

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

You can fetch tabloid here: https://chrome.google.com/webstore/detail/femidpfpildjfepkcaodpalpakgadjih                    

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

Tên Keyboard Shortcuts to Close Other/Right Tabs Keyboard Shortcuts to Close Other/Right Tabs
ID dkoadhojigekhckndaehenfbhcgfeepl
URL Chính Thức https://chromewebstore.google.com/detail/keyboard-shortcuts-to-clo/dkoadhojigekhckndaehenfbhcgfeepl
Mô tả Chrome extension adding shortcuts for closing and pinning tabs.
Kích Thước Tệp 4.03 KB
Số Lần Cài Đặt 20,000
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2023-10-28
Ngày Phát Hành 2013-01-23
Đánh Giá 4.33/5 Tổng số 72 Đá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 Close Other\/Right Tabs",
    "version": "1.0.1",
    "manifest_version": 3,
    "description": "Chrome extension adding shortcuts for closing and pinning tabs.",
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "tabGroups"
    ],
    "commands": {
        "close-other-tabs": {
            "suggested_key": {
                "default": "Alt+Shift+O"
            },
            "description": "Close other Tabs"
        },
        "close-right-tabs": {
            "suggested_key": {
                "default": "Alt+Shift+R"
            },
            "description": "Close Tabs to the right"
        },
        "toggle-pin": {
            "suggested_key": {
                "default": "Alt+Shift+P"
            },
            "description": "Pin\/unpin Tab"
        }
    }
}