Tab Group

Allow you manage and save your chrome tabs.

Tab Group란 무엇입니까?

Tab Group은(는) andriydrozhko에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allow you manage and save your chrome tabs."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Tab Group 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        An extension which allows you to select opened links in chrome browser and save them into groups. You can create multiple groups to save most important links for work, hobbies, and any other links that you open every day

To create a group you simply click on big red plus icon, select links you need, give your group a name and save it!

What's new:
v.1.3.2
1. Optimize extension loading

v.1.3
1. Added rename saved group functionality
2. Ability to change links order inside the saved group
3. Export/Import of saved groups into JSON
4. Opened tabs now grouped by window
5. Added setting page (top right corner)
	5.1 Ability to ignore pinned tabs
	5.2 Ability to close tabs when click save a group
6. Now you can save the page by clicking the right mouse (you can see TabGroup context menu) and select group for saving
7. Size of icons and fonts was reduced

v.1.2.1
1. Expand/Collapse now work when clicking on group panel, not just on icon
2. Add new button "Open in this window"
3. Fix "Select all" button
4. Fix search not clean when changing tabs
5. Hotfixes

v.1.2: 
1. Now you can add and remove links from the already created group.
2. You can reorder your groups by dragging them.
3. Tabs are opened in current window by default.
4. Tabs can be opened in a new window by pressing window icon on the right of each group.
5. Great design improvements!                    

확장 프로그램 기본 정보

이름 Tab Group Tab Group
ID gjgjkhbmehogehkdnoooeihkipifimme
공식 URL https://chromewebstore.google.com/detail/tab-group/gjgjkhbmehogehkdnoooeihkipifimme
설명 Allow you manage and save your chrome tabs.
파일 크기 1.32 MB
설치 횟수 14,835
현재 버전 1.3.3
최근 업데이트 2022-10-15
출시 날짜 2020-06-06
평점 3.94/5 총 81 개의 평점
개발자 andriydrozhko
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Tab Group",
    "version": "1.3.3",
    "description": "Allow you manage and save your chrome tabs.",
    "icons": {
        "16": "images\/icon_2_16.png",
        "48": "images\/icon_2_48.png",
        "128": "images\/icon_2_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/",
                "http:\/\/*\/"
            ],
            "js": [
                "lib\/jquery-3.1.0.min.js",
                "content_script\/end.js",
                "lib\/chrome-Storage-largeSync.min.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background\/background-context-menu.js"
    },
    "permissions": [
        "tabs",
        "storage",
        "contextMenus"
    ],
    "action": {
        "default_icon": [],
        "default_title": "Tab Group",
        "default_popup": "popup\/popup.html"
    }
}