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คืออะไร?

Click Close Tab เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "A simple extension that will close tabs by clicking left & right mouse buttons at the same time. Note: Works well on Windows, but…"

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Click Close Tab

ดาวน์โหลดไฟล์ส่วนขยาย Click Close Tab ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Click Close Tab Click Close Tab
ID mldgnecagdcghceibglikakhcmfcglkf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/click-close-tab/mldgnecagdcghceibglikakhcmfcglkf
คำอธิบาย A simple extension that will close tabs by clicking left & right mouse buttons at the same time. Note: Works well on Windows, but…
ขนาดไฟล์ 3.68 KB
จำนวนการติดตั้ง 45
เวอร์ชันปัจจุบัน 1.2
อัปเดตครั้งล่าสุด 2017-11-15
วันที่เผยแพร่ 2017-11-15
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Unknown
ประเภทการชำระเงิน free
ภาษาที่รองรับ 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"
        }
    ]
}