Tab Manager

Chromium tabs manager

Tab Manager란 무엇입니까?

Tab Manager은(는) Jary Wong에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Chromium tabs manager"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Chromium tabs manager is a browser extension that allows you to manage your browser tabs more efficiently. It offers the following features:

1. Automatic tab saving every 5 minutes, allowing you to easily recover your tabs in the event of a browser crash.
2. The ability to close selected tabs with ease.
3. A snooze function to delay loading of tabs and save memory.
4. The ability to search for tabs by title, which can also be done directly from the address bar using the keyword "tm + Tab" shortcut.

These features are designed to improve your browsing experience and help you stay organized while working. If you have any further suggestions or feature requests, please feel free to share them with us.                    

확장 프로그램 기본 정보

이름 Tab Manager Tab Manager
ID omhcmflkpicbabnambfoocfmhgchakbj
공식 URL https://chromewebstore.google.com/detail/tab-manager/omhcmflkpicbabnambfoocfmhgchakbj
설명 Chromium tabs manager
파일 크기 54.28 KB
설치 횟수 38
현재 버전 0.0.13
최근 업데이트 2023-03-06
출시 날짜 2020-07-29
개발자 Jary Wong
이메일 [email protected]
결제 유형 free
지원되는 언어 en,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "author": "Jary Wong",
    "version": "0.0.13",
    "default_locale": "en",
    "manifest_version": 2,
    "description": "__MSG_description__",
    "icons": {
        "16": "icons\/TabManager_16.png",
        "48": "icons\/TabManager_48.png",
        "128": "icons\/TabManager_128.png"
    },
    "browser_action": {
        "default_icon": "icons\/TabManager_128.png",
        "default_popup": "popup.html",
        "default_title": "__MSG_extName__"
    },
    "permissions": [
        "tabs",
        "storage",
        "bookmarks",
        "chrome:\/\/favicon\/"
    ],
    "background": {
        "scripts": [
            "js\/common.js",
            "js\/background.js"
        ],
        "persistent": true
    },
    "omnibox": {
        "keyword": "tm"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Right"
            }
        },
        "snoozeCurrent": {
            "description": "__MSG_snoozeCurrent__",
            "suggested_key": {
                "default": "Alt+Q"
            }
        }
    }
}