Tab and Tab Group Shortcuts
Adds shortcuts for creating tabs, reorganizing tabs, and moving the focus.
Tab and Tab Group Shortcuts란 무엇입니까?
Tab and Tab Group Shortcuts은(는) bmalehorn에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds shortcuts for creating tabs, reorganizing tabs, and moving the focus."입니다.
확장 프로그램 스크린샷
Tab and Tab Group Shortcuts 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Adds multiple shortcuts to manage tabs: Opens a tab in the same group as the current tab. Mac: Command+Shift+Y Windows: Ctrl+Shift+Y Swap the tab to the left, moving into and out of opened tab groups. Visit chrome://extensions/shortcuts to bind this shortcut. Swap the tab to the right, moving into and out of opened tab groups. Visit chrome://extensions/shortcuts to bind this shortcut. Move focus to the left, moving into and out of opened tab groups. Visit chrome://extensions/shortcuts to bind this shortcut. Move focus to the right, moving into and out of opened tab groups. Visit chrome://extensions/shortcuts to bind this shortcut.
확장 프로그램 기본 정보
이름 | |
ID | nnbnphmhdbcgnekonlgniafbpcpapkep |
공식 URL | https://chromewebstore.google.com/detail/tab-and-tab-group-shortcu/nnbnphmhdbcgnekonlgniafbpcpapkep |
설명 | Adds shortcuts for creating tabs, reorganizing tabs, and moving the focus. |
파일 크기 | 6.83 KB |
설치 횟수 | 216 |
현재 버전 | 1.0.6 |
최근 업데이트 | 2023-10-08 |
출시 날짜 | 2022-07-19 |
평점 | 5.00/5 총 4 개의 평점 |
개발자 | bmalehorn |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/bmalehorn/new-tab-in-tab-group |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tab and Tab Group Shortcuts", "description": "Adds shortcuts for creating tabs, reorganizing tabs, and moving the focus.", "version": "1.0.6", "manifest_version": 3, "permissions": [ "tabs", "tabGroups" ], "background": { "service_worker": "background.js" }, "commands": { "swap-right": { "description": "Swap tab to the right" }, "swap-left": { "description": "Swap tab to the left" }, "focus-left-into-group": { "description": "Move focus left into tab group" }, "focus-right-into-group": { "description": "Move focus right into tab group" }, "new-tab-in-group": { "description": "Open New Tab in Group", "suggested_key": { "default": "Ctrl+Shift+Y", "mac": "Command+Shift+Y" } } }, "icons": { "128": "icon.png" } } |