Keyboard Shortcuts to Close Other/Right Tabs
Chrome extension adding shortcuts for closing and pinning tabs.
Keyboard Shortcuts to Close Other/Right Tabs란 무엇입니까?
Keyboard Shortcuts to Close Other/Right Tabs은(는) Michael Fester에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Chrome extension adding shortcuts for closing and pinning tabs."입니다.
확장 프로그램 스크린샷
Keyboard Shortcuts to Close Other/Right Tabs 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
The extension consists of three keyboard shortcuts: * Alt-Shift-O: Close Other Tabs * Alt-Shift-R: Close Tabs to the Right * Alt-Shift-P: Pin Tab Note: A separate extension, tabloid, adds the following shortcuts to Chrome * Move Tab Right * Move Tab Left * Move Tab to First Position * Move Tab to Last Position Chrome extensions currently only allow for a maximum of four shortcuts, which is why they are not included in tabasco. You can fetch tabloid here: https://chrome.google.com/webstore/detail/femidpfpildjfepkcaodpalpakgadjih
확장 프로그램 기본 정보
이름 | Keyboard Shortcuts to Close Other/Right Tabs |
ID | dkoadhojigekhckndaehenfbhcgfeepl |
공식 URL | https://chromewebstore.google.com/detail/keyboard-shortcuts-to-clo/dkoadhojigekhckndaehenfbhcgfeepl |
설명 | Chrome extension adding shortcuts for closing and pinning tabs. |
파일 크기 | 4.03 KB |
설치 횟수 | 20,000 |
현재 버전 | 1.0.1 |
최근 업데이트 | 2023-10-28 |
출시 날짜 | 2013-01-23 |
평점 | 4.33/5 총 72 개의 평점 |
개발자 | Michael Fester |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://michaelfester.com |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Keyboard Shortcuts to Close Other\/Right Tabs", "version": "1.0.1", "manifest_version": 3, "description": "Chrome extension adding shortcuts for closing and pinning tabs.", "background": { "service_worker": "background.js" }, "permissions": [ "tabs", "activeTab", "tabGroups" ], "commands": { "close-other-tabs": { "suggested_key": { "default": "Alt+Shift+O" }, "description": "Close other Tabs" }, "close-right-tabs": { "suggested_key": { "default": "Alt+Shift+R" }, "description": "Close Tabs to the right" }, "toggle-pin": { "suggested_key": { "default": "Alt+Shift+P" }, "description": "Pin\/unpin Tab" } } } |