Close Other Tabs

Allows you to close other tabs with a toolbar button, an item on the right-click menu or by pressing Alt+Shift+W.

Close Other Tabs란 무엇입니까?

Close Other Tabs은(는) David Webb에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows you to close other tabs with a toolbar button, an item on the right-click menu or by pressing Alt+Shift+W."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Close Other Tabs 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        To replace the item removed from the right-click menu on tabs this extension does three things:

1. It adds a button to the toolbar you can click on to close other tabs.
2. It adds a Close Other Tabs item to the standard right-click context menu.
3. It adds the Alt+Shift+W keyboard shortcut to close other tabs.

It doesn't track your browsing, send your personal data to any remote servers or rewrite any of the links on the pages you visit.  It adds the toolbar button, the context menu item, the keyboard shortcut and nothing else.  The source is available on GitHub if you want to check this for yourself.

(The extension adds a toolbar button and puts an item to the right click context menu you get when clicking on the page rather restoring the menu item that was removed because Extensions cannot add items to the tab menu.)                    

확장 프로그램 기본 정보

이름 Close Other Tabs Close Other Tabs
ID hlgfnmhokcceeipoadecmcgfijbnjpjm
공식 URL https://chromewebstore.google.com/detail/close-other-tabs/hlgfnmhokcceeipoadecmcgfijbnjpjm
설명 Allows you to close other tabs with a toolbar button, an item on the right-click menu or by pressing Alt+Shift+W.
파일 크기 46.45 KB
설치 횟수 808
현재 버전 1.2
최근 업데이트 2019-11-21
출시 날짜 2019-11-20
평점 5.00/5 총 2 개의 평점
개발자 David Webb
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/davweb/close-other-tabs
도움말 페이지 URL https://github.com/davweb/close-other-tabs/blob/master/README.md
개인정보 보호 정책 페이지 URL https://davweb.github.io/close-other-tabs/privacy_policy.html
지원되는 언어 id,ms,de,en-GB,en-US,fil,fr,sw,nl,no,vi,tr,ca,da,et,es,es-419,hr,it,lv,lt,hu,pl,pt-BR,pt-PT,ro,sk,sl,fi,sv,cs,el,sr,bg,ru,uk,iw,fa,mr,hi,bn,gu,ta,te,kn-IN,ml,th,am-ET,ar,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "default_locale": "en_US",
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDescription__",
    "version": "1.2",
    "icons": {
        "16": "images\/close16.png",
        "48": "images\/close48.png",
        "128": "images\/close128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/close16.png",
            "24": "images\/close24.png",
            "32": "images\/close32.png"
        },
        "default_title": "__MSG_extensionName__"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+Shift+W"
            }
        }
    },
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    }
}