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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
        }
    ]
}