Tab Groups Manager
A Chrome extension to manage tab groups
Tab Groups Manager là gì?
Tab Groups Manager là một tiện ích mở rộng Chrome được phát triển bởi JichouP, và tính năng chính của nó là "A Chrome extension to manage tab groups".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Tab Groups Manager
Tải xuống các tệp mở rộng Tab Groups Manager dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Tab Groups Manager |
ID | mngmefbcbedaflpdbccfeceadliofapp |
URL Chính Thức | https://chromewebstore.google.com/detail/tab-groups-manager/mngmefbcbedaflpdbccfeceadliofapp |
Mô tả | A Chrome extension to manage tab groups |
Kích Thước Tệp | 7.34 KB |
Số Lần Cài Đặt | 49 |
Phiên Bản Hiện Tại | 1.0.0.4 |
Cập Nhật Lần Cuối | 2023-03-19 |
Ngày Phát Hành | 2021-04-12 |
Đánh Giá | 3.67/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | JichouP |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |