Tab Manager

A tool for managing and organizing tabs

Tab Manager란 무엇입니까?

Tab Manager은(는) domsupamoe에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A tool for managing and organizing tabs"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        The philosophy behind it is to manage all the tabs within the current window. It is often the case that there should NOT be more than 2 or 3 browser windows opened. Thus, the extension itself has a limited or no support for managing multi-window tabs.

********************

The features included in this extension:
- Actions for merge, sort, and kill tabs
- Toggle to detect duplicate tabs and close previous opened tabs
- Search and filter tabs from the input box
- Drag and drop tab item will move tab to different position
- Click on the tab item will redirect to web page
- Click on red x will close the current tab item
- Hover and press x will close the current tab item

********************

Source Code and Documentation
https://github.com/domsupamoe/tab-manager

********************

Changelog
https://github.com/domsupamoe/tab-manager/blob/master/CHANGELOG.md

********************

Please feel free to create issues and PRs to contribute to the project.                    

확장 프로그램 기본 정보

이름 Tab Manager Tab Manager
ID pjgghjfckgpmghploaenddaemikldhlc
공식 URL https://chromewebstore.google.com/detail/tab-manager/pjgghjfckgpmghploaenddaemikldhlc
설명 A tool for managing and organizing tabs
파일 크기 93.41 KB
설치 횟수 30
현재 버전 1.9.4
최근 업데이트 2020-08-02
출시 날짜 2020-07-29
평점 5.00/5 총 1 개의 평점
개발자 domsupamoe
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/domsupamoe/tab-manager
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tab Manager",
    "version": "1.9.4",
    "description": "A tool for managing and organizing tabs",
    "permissions": [
        "storage",
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/tab_active16.png",
            "32": "images\/tab_active32.png",
            "48": "images\/tab_active48.png",
            "128": "images\/tab_active128.png"
        }
    },
    "icons": {
        "16": "images\/tab_active16.png",
        "32": "images\/tab_active32.png",
        "48": "images\/tab_active48.png",
        "128": "images\/tab_active128.png"
    },
    "manifest_version": 2
}