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
官方網址 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
}