Close Tab Shortcut

Customize chrome shortcut to close current tab

Close Tab Shortcut là gì?

Close Tab Shortcut là một tiện ích mở rộng Chrome được phát triển bởi Stanley Guevara, và tính năng chính của nó là "Customize chrome shortcut to close current tab".

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

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

                        Simple extension for closing active tab.

Just go to chrome://extensions scroll down to "Keyboard shortcuts" and set desired keys.                    

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

Tên Close Tab Shortcut Close Tab Shortcut
ID oohndijkoieelbpmfehjecdihiiaecgb
URL Chính Thức https://chrome.google.com/webstore/detail/oohndijkoieelbpmfehjecdihiiaecgb
Mô tả Customize chrome shortcut to close current tab
Kích Thước Tệp 3.21 KB
Số Lần Cài Đặt 11
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2016-10-16
Ngày Phát Hành 2016-10-16
Nhà Phát Triển Stanley Guevara
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/stanleyguevara/chrome-close-tab-shortcut
URL Trang Trợ Giúp https://github.com/stanleyguevara/chrome-close-tab-shortcut
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Close Tab Shortcut",
    "permissions": [
        "tabs"
    ],
    "version": "1.0",
    "description": "Customize chrome shortcut to close current tab",
    "commands": {
        "close-tab": {
            "suggested_key": {
                "default": "Alt+X",
                "mac": "Ctrl+X"
            },
            "description": "Close current tab"
        }
    },
    "background": {
        "scripts": [
            "main.js"
        ],
        "persistent": false
    }
}