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是由Unknown開發的Chrome擴展程式,該擴展的主要功能是“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擴展crx文件

下載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
官方網址 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"
        }
    ]
}