Manage Tabs by Domain

Close and gather same-domain tabs.

什麼是Manage Tabs by Domain?

Manage Tabs by Domain是由Nicole White開發的Chrome擴展程式,該擴展的主要功能是“Close and gather same-domain tabs.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Manage Tabs by Domain擴展crx文件

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

擴展使用說明

                        Tabs with the same domain as the active tab can be closed with CMD + Shift + X or gathered around the active tab with CMD + Shift + A. All same-domain tabs can be gathered with CMD + Shift + L. Alternatively, tabs can be managed by clicking on the extension's button and selecting Close, Gather, or Gather All.

You can edit the hotkeys that close or gather tabs at the bottom of chrome://extensions/                    

擴展基本資訊

名稱 Manage Tabs by Domain Manage Tabs by Domain
ID jgjhgpeaejjahlbcgijdibooomicdcfi
官方網址 https://chromewebstore.google.com/detail/manage-tabs-by-domain/jgjhgpeaejjahlbcgijdibooomicdcfi
簡介 Close and gather same-domain tabs.
檔案大小 1.08 MB
安裝次數 362
目前版本 0.0.2
更新時間 2017-06-19
上架時間 2017-06-18
評分 4.11/5 共 9 次評分
開發者 Nicole White
電子郵箱 [email protected]
付費類型 free
說明頁面URL https://github.com/nicolewhite/same-domain-tabs/issues
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Manage Tabs by Domain",
    "short_name": "Manage Tabs",
    "description": "Close and gather same-domain tabs.",
    "version": "0.0.2",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "tabs",
        "commands"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "commands": {
        "gather-tabs": {
            "suggested_key": {
                "default": "Ctrl+Shift+A",
                "mac": "Command+Shift+A"
            },
            "description": "Gather same-domain tabs around active tab."
        },
        "close-tabs": {
            "suggested_key": {
                "default": "Ctrl+Shift+X",
                "mac": "Command+Shift+X"
            },
            "description": "Close same-domain tabs as active tab."
        },
        "gather-tabs-all": {
            "suggested_key": {
                "default": "Ctrl+Shift+L",
                "mac": "Command+Shift+L"
            },
            "description": "Gather all same-domain tabs."
        }
    },
    "browser_action": {
        "default_icon": "icons\/icon48.png",
        "default_popup": "popup.html"
    },
    "manifest_version": 2
}