Categorize Tabs

Group Tabs by domain

什麼是Categorize Tabs?

Categorize Tabs是由yibingshi開發的Chrome擴展程式,該擴展的主要功能是“Group Tabs by domain”。

擴展截圖

screenshot

下載Categorize Tabs擴展crx文件

下載Categorize Tabs擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        An extension to categorize opened tabs by domain name for quick access. 

Also, you can quickly copy tab link to send to someone, pin/bookmark/close tabs, and move tabs that have same domain name to a new window.

Options for access all opened windows, search bar and drag & drop features are coming soon.

If you have any suggestions or concerns, feel free to send me an email.

* Credit to Kelig Le Luron from the Noun Project & Freepik from Flaticon for the icons                    

擴展基本資訊

名稱 Categorize Tabs Categorize Tabs
ID oefogamggbofaeonfmkigobeflejjgei
官方網址 https://chromewebstore.google.com/detail/categorize-tabs/oefogamggbofaeonfmkigobeflejjgei
簡介 Group Tabs by domain
檔案大小 110 KB
安裝次數 53
目前版本 0.3
更新時間 2019-01-03
上架時間 2019-01-03
評分 4.00/5 共 2 次評分
開發者 yibingshi
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/NathanShi/group-tabs
說明頁面URL https://github.com/NathanShi/group-tabs/pulls
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Categorize Tabs",
    "version": "0.3",
    "description": "Group Tabs by domain",
    "permissions": [
        "tabs",
        "activeTab",
        "bookmarks",
        "clipboardWrite"
    ],
    "background": {
        "scripts": [
            ".\/scripts\/background.js"
        ],
        "persistent": false
    },
    "manifest_version": 2,
    "browser_action": {
        "default_popup": ".\/public\/popup.html",
        "default_icon": {
            "16": "images\/launch_16.png",
            "32": "images\/launch_32.png",
            "48": "images\/launch_48.png",
            "128": "images\/launch_128.png"
        },
        "persistent": false
    },
    "icons": {
        "16": "images\/launch_16.png",
        "32": "images\/launch_32.png",
        "48": "images\/launch_48.png",
        "128": "images\/launch_128.png"
    }
}