Simple Tab Manager

Simple tab manager that allows you to easily manage and sort tabs.

Simple Tab Manager란 무엇입니까?

Simple Tab Manager은(는) albin.carlsson1503에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Simple tab manager that allows you to easily manage and sort tabs."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Functionality:

Windows:
- Open and close windows
- Minimize and maximize windows
- Add new tab to window
- Customize the title and color of the window (UI only)

Tabs:
- Open and close tabs
- Pin and unpin tabs
- Mute and unmute tabs
- Move tabs within and between windows
- Select multiple tabs at once with Right-Click or Ctrl+Click
- Sort tabs by title or url
- Filter tabs by search

Other:
- Supports dark mode
- Supports a more compact view (grid view)                    

확장 프로그램 기본 정보

이름 Simple Tab Manager Simple Tab Manager
ID mdfbfcbfcohpbdicnpdpcdioggfdddlc
공식 URL https://chromewebstore.google.com/detail/simple-tab-manager/mdfbfcbfcohpbdicnpdpcdioggfdddlc
설명 Simple tab manager that allows you to easily manage and sort tabs.
파일 크기 123 KB
설치 횟수 94
현재 버전 2.0.1
최근 업데이트 2023-07-10
출시 날짜 2021-12-27
평점 5.00/5 총 2 개의 평점
개발자 albin.carlsson1503
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/EpicAlbin03/Simple-Tab-Manager
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Simple Tab Manager",
    "description": "Simple tab manager that allows you to easily manage and sort tabs.",
    "version": "2.0.1",
    "manifest_version": 3,
    "icons": {
        "16": ".\/images\/icon-16x16.png",
        "32": ".\/images\/icon-32x32.png",
        "48": ".\/images\/icon-48x48.png",
        "128": ".\/images\/icon-128x128.png"
    },
    "action": {
        "default_popup": "index.html",
        "default_icons": {
            "16": ".\/images\/icon-16x16.png",
            "32": ".\/images\/icon-32x32.png",
            "48": ".\/images\/icon-48x48.png",
            "128": ".\/images\/icon-128x128.png"
        }
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "permissions": [
        "tabs",
        "storage"
    ]
}