Close All Tabs On Left

Closes all tabs on the left of current tab

Close All Tabs On Left là gì?

Close All Tabs On Left là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "Closes all tabs on the left of current tab".

Tải xuống tệp CRX của tiện ích mở rộng Close All Tabs On Left

Tải xuống các tệp mở rộng Close All Tabs On Left 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

                        A very simple extension that closes all tabs left of the current tab in the current window. You can also use the shortcut Alt+Shift+Q to close the tabs.                    

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

Tên Close All Tabs On Left Close All Tabs On Left
ID afmdjfefjcfmedhgbegphdjhfckifaij
URL Chính Thức https://chromewebstore.google.com/detail/close-all-tabs-on-left/afmdjfefjcfmedhgbegphdjhfckifaij
Mô tả Closes all tabs on the left of current tab
Kích Thước Tệp 6.72 KB
Số Lần Cài Đặt 1,286
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2018-04-20
Ngày Phát Hành 2018-04-20
Đánh Giá 5.00/5 Tổng số 8 Đánh Giá
Nhà Phát Triển Unknown
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Close All Tabs On Left",
    "description": "Closes all tabs on the left of current tab",
    "version": "1.2",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "commands": {
        "close-all-left-tabs": {
            "suggested_key": {
                "default": "Alt+Shift+Q",
                "mac": "Alt+Shift+Q"
            },
            "description": "Close all tabs on the left of current tab"
        }
    },
    "permissions": [
        "tabs"
    ]
}