Keyboard shortcuts to close Chrome tabs

Added the missing hotkeys to control Chrome tabs. Now you can use shortcuts to close left/right/other tabs or toggle pinned ones

Keyboard shortcuts to close Chrome tabs là gì?

Keyboard shortcuts to close Chrome tabs là một tiện ích mở rộng Chrome được phát triển bởi https://diophung.com, và tính năng chính của nó là "Added the missing hotkeys to control Chrome tabs. Now you can use shortcuts to close left/right/other tabs or toggle pinned ones".

Ả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 Keyboard shortcuts to close Chrome tabs

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

                        Ever wish Chrome has the hotkeys to close tabs to the right, or to the left, or pin current tab? 
This extension will let you do it, and there are more.

You can configure the hotkeys to:
- Close tabs to the left.
- Close tabs to the right.
- Close other tabs.
- Pin/unpin a tab.

Source code available at : https://github.com/diophung/close-chrome-tabs
Please provide your feedback to Twitter: @diophung or email : [email protected].                    

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

Tên Keyboard shortcuts to close Chrome tabs Keyboard shortcuts to close Chrome tabs
ID fipfgiejfpcdacpjepkohdlnjonchnal
URL Chính Thức https://chromewebstore.google.com/detail/keyboard-shortcuts-to-clo/fipfgiejfpcdacpjepkohdlnjonchnal
Mô tả Added the missing hotkeys to control Chrome tabs. Now you can use shortcuts to close left/right/other tabs or toggle pinned ones
Kích Thước Tệp 293 KB
Số Lần Cài Đặt 4,928
Phiên Bản Hiện Tại 0.3.0
Cập Nhật Lần Cuối 2022-02-07
Ngày Phát Hành 2018-06-24
Đánh Giá 4.64/5 Tổng số 25 Đánh Giá
Nhà Phát Triển https://diophung.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/diophung/close-chrome-tabs
URL Trang Trợ Giúp https://diophung.com/chrome-tab-shortcut-privacy-policy/
URL Trang Chính Sách Bảo Mật https://github.com/diophung/close-chrome-tabs/wiki/Privacy-Policy
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "commands": {
        "close-other-tabs-dp": {
            "description": "Close other tabs",
            "suggested_key": {
                "default": "Alt+Shift+W"
            }
        },
        "close-left-tabs-dp": {
            "description": "Close tabs to the left",
            "suggested_key": {
                "default": "Alt+Shift+L"
            }
        },
        "close-right-tabs-dp": {
            "description": "Close tabs to the right",
            "suggested_key": {
                "default": "Alt+Shift+R"
            }
        },
        "toggle-pin-dp": {
            "description": "Pin\/unpin Tab",
            "suggested_key": {
                "default": "Alt+Shift+P"
            }
        }
    },
    "description": "Added the missing hotkeys to control Chrome tabs. Now you can use shortcuts to close left\/right\/other tabs or toggle pinned ones",
    "icons": {
        "128": "images\/tabs_128.png",
        "48": "images\/tabs_48.png"
    },
    "manifest_version": 2,
    "name": "Keyboard shortcuts to close Chrome tabs",
    "short_name": "Shortcuts to close tabs",
    "options_page": "options.html",
    "permissions": [],
    "version": "0.3.0"
}