Click Close Tab

A simple extension that will close tabs by clicking left & right mouse buttons at the same time. Note: Works well on Windows, but…

Click Close Tab là gì?

Click Close Tab 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à "A simple extension that will close tabs by clicking left & right mouse buttons at the same time. Note: Works well on Windows, but…".

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

Tải xuống các tệp mở rộng Click Close Tab 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 simple extension that will close tabs by clicking left & right mouse buttons at the same time.

Note: Works well on Windows, but is a bit screwy on OSX. In OSX, it only works if left clicking, holding left, then right clicking. This will not work if you've right clicked first and the context menu is open in OSX. If you right click and the context menu opens, left click elsewhere to close it, then left click, hold, right click to close the tab.                    

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

Tên Click Close Tab Click Close Tab
ID mldgnecagdcghceibglikakhcmfcglkf
URL Chính Thức https://chromewebstore.google.com/detail/click-close-tab/mldgnecagdcghceibglikakhcmfcglkf
Mô tả A simple extension that will close tabs by clicking left & right mouse buttons at the same time. Note: Works well on Windows, but…
Kích Thước Tệp 3.68 KB
Số Lần Cài Đặt 45
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2017-11-15
Ngày Phát Hành 2017-11-15
Đánh Giá 5.00/5 Tổng số 2 Đá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",
    "name": "Click Close Tab",
    "manifest_version": 2,
    "version": "1.2",
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "click-close-tab.js"
            ],
            "run_at": "document_end"
        }
    ]
}