Tab Groups Manager
A Chrome extension to manage tab groups
Tab Groups Manager란 무엇입니까?
Tab Groups Manager은(는) JichouP에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A Chrome extension to manage tab groups"입니다.
확장 프로그램 스크린샷
Tab Groups Manager 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension always includes tabs in tab groups. Even when you have a lot of tabs open, you can comfortably get on with the next task. With Alt + Shift + LeftArrow/RightArrow, you can swap positions with the left/right tab. With Alt + Shift + UpArrow, you can add the tab in focus to a new group. With Alt + Shift + DownArrow, you can collapse all tab groups that are not currently in focus. If you don't prefer the default shortcut keys, you can change them at chrome://extensions/shortcuts.
확장 프로그램 기본 정보
이름 | Tab Groups Manager |
ID | mngmefbcbedaflpdbccfeceadliofapp |
공식 URL | https://chromewebstore.google.com/detail/tab-groups-manager/mngmefbcbedaflpdbccfeceadliofapp |
설명 | A Chrome extension to manage tab groups |
파일 크기 | 7.34 KB |
설치 횟수 | 49 |
현재 버전 | 1.0.0.4 |
최근 업데이트 | 2023-03-19 |
출시 날짜 | 2021-04-12 |
평점 | 3.67/5 총 3 개의 평점 |
개발자 | JichouP |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Tab Groups Manager", "version": "1.0.0.4", "description": "A Chrome extension to manage tab groups", "permissions": [ "tabGroups" ], "icons": { "16": "16.png", "48": "48.png", "128": "128.png" }, "commands": { "move_left": { "suggested_key": { "default": "Alt+Shift+Left", "windows": "Alt+Shift+Left", "mac": "Alt+Shift+Left" }, "description": "Swap positions with the left tab" }, "move_right": { "suggested_key": { "default": "Alt+Shift+Right", "windows": "Alt+Shift+Right", "mac": "Alt+Shift+Right" }, "description": "Swap positions with the right tab" }, "new_group": { "suggested_key": { "default": "Alt+Shift+Up", "windows": "Alt+Shift+Up", "mac": "Alt+Shift+Up" }, "description": "Add the tab in focus to a new group" }, "collapse": { "suggested_key": { "default": "Alt+Shift+Down", "windows": "Alt+Shift+Down", "mac": "Alt+Shift+Down" }, "description": "Collapse all tab groups that are not currently in focus." } }, "background": { "service_worker": "background.js" } } |