Keyboard shortcuts to close Chrome tabs

Added the missing hotkeys to control Chrome tabs. Now you can use shortcuts to close left/right/other tabs or toggle pinned ones

Keyboard shortcuts to close Chrome tabs란 무엇입니까?

Keyboard shortcuts to close Chrome tabs은(는) https://diophung.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Added the missing hotkeys to control Chrome tabs. Now you can use shortcuts to close left/right/other tabs or toggle pinned ones"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Keyboard shortcuts to close Chrome tabs 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Ever wish Chrome has the hotkeys to close tabs to the right, or to the left, or pin current tab? 
This extension will let you do it, and there are more.

You can configure the hotkeys to:
- Close tabs to the left.
- Close tabs to the right.
- Close other tabs.
- Pin/unpin a tab.

Source code available at : https://github.com/diophung/close-chrome-tabs
Please provide your feedback to Twitter: @diophung or email : [email protected].                    

확장 프로그램 기본 정보

이름 Keyboard shortcuts to close Chrome tabs Keyboard shortcuts to close Chrome tabs
ID fipfgiejfpcdacpjepkohdlnjonchnal
공식 URL https://chromewebstore.google.com/detail/keyboard-shortcuts-to-clo/fipfgiejfpcdacpjepkohdlnjonchnal
설명 Added the missing hotkeys to control Chrome tabs. Now you can use shortcuts to close left/right/other tabs or toggle pinned ones
파일 크기 293 KB
설치 횟수 4,928
현재 버전 0.3.0
최근 업데이트 2022-02-07
출시 날짜 2018-06-24
평점 4.64/5 총 25 개의 평점
개발자 https://diophung.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/diophung/close-chrome-tabs
도움말 페이지 URL https://diophung.com/chrome-tab-shortcut-privacy-policy/
개인정보 보호 정책 페이지 URL https://github.com/diophung/close-chrome-tabs/wiki/Privacy-Policy
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "commands": {
        "close-other-tabs-dp": {
            "description": "Close other tabs",
            "suggested_key": {
                "default": "Alt+Shift+W"
            }
        },
        "close-left-tabs-dp": {
            "description": "Close tabs to the left",
            "suggested_key": {
                "default": "Alt+Shift+L"
            }
        },
        "close-right-tabs-dp": {
            "description": "Close tabs to the right",
            "suggested_key": {
                "default": "Alt+Shift+R"
            }
        },
        "toggle-pin-dp": {
            "description": "Pin\/unpin Tab",
            "suggested_key": {
                "default": "Alt+Shift+P"
            }
        }
    },
    "description": "Added the missing hotkeys to control Chrome tabs. Now you can use shortcuts to close left\/right\/other tabs or toggle pinned ones",
    "icons": {
        "128": "images\/tabs_128.png",
        "48": "images\/tabs_48.png"
    },
    "manifest_version": 2,
    "name": "Keyboard shortcuts to close Chrome tabs",
    "short_name": "Shortcuts to close tabs",
    "options_page": "options.html",
    "permissions": [],
    "version": "0.3.0"
}