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ファイルをダウンロード

Tab Manager拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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
}