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文件
下載Tab Groups Manager擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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" } } |