Group Tabs By Domain

New tabs are automatically moved to the correct tab group. Additionaly you can ctrl + shift + left arrow to group all tabs.

什么是Group Tabs By Domain?

Group Tabs By Domain是由grouptabsbydomain开发的Chrome扩展程序,该扩展的主要功能是“New tabs are automatically moved to the correct tab group. Additionaly you can ctrl + shift + left arrow to group all tabs.”。

扩展截图

screenshot

下载Group Tabs By Domain扩展crx文件

下载Group Tabs By Domain扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Group all the tabs by domain/website url. This will help user to keep tabs organized.

New tabs are automatically moved to the correct group. If no group is available then new group will be created.

It groups all tabs by top level domain. group name will be GOOGLE for both below url(s).
https://google.com
https://docs.google.com                    

扩展基本信息

名称 Group Tabs By Domain Group Tabs By Domain
ID icmbnkmjhdapliaologdghjfpcmcimln
官方URL https://chromewebstore.google.com/detail/group-tabs-by-domain/icmbnkmjhdapliaologdghjfpcmcimln
简介 New tabs are automatically moved to the correct tab group. Additionaly you can ctrl + shift + left arrow to group all tabs.
文件大小 63.21 KB
安装次数 3,084
当前版本 0.0.0.1
更新时间 2022-06-08
上架时间 2022-06-08
评分 4.52/5 共31次评分
开发者 grouptabsbydomain
电子邮箱 [email protected]
付费类型 free
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Group Tabs By Domain",
    "version": "0.0.0.1",
    "description": "New tabs are automatically moved to the correct tab group. Additionaly you can ctrl + shift + left arrow to group all tabs.",
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabGroups",
        "tabs"
    ],
    "background": {
        "service_worker": "service-worker.js"
    },
    "commands": {
        "group-tabs-by-domain": {
            "suggested_key": {
                "default": "Ctrl+Shift+Left",
                "mac": "Command+Shift+Left"
            },
            "description": "New tabs are automatically moved to the correct tab group. Additionaly you can ctrl + shift + left arrow to group all tabs."
        }
    }
}