Tab Groups Manager

A Chrome extension to manage tab groups

Tab Groups Managerคืออะไร?

Tab Groups Manager เป็นส่วนขยายของ Chrome ที่พัฒนาโดย JichouP และคุณลักษณะหลักของมันคือ "A Chrome extension to manage tab groups"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Tab Groups Manager

ดาวน์โหลดไฟล์ส่วนขยาย 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 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"
    }
}