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