Group Tabs
Group tabs by domain.
什么是Group Tabs?
Group Tabs是由https://michimani.net开发的Chrome扩展程序,该扩展的主要功能是“Group tabs by domain.”。
扩展截图
下载Group Tabs扩展crx文件
下载Group Tabs扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This is a Chrome extension that sorts and groups tabs. # Features * Sort tabs by URL * Group tabs by domain * Group tabs by domain (ignore sub-domain) * Ungroup all tab group # CHANGELOG 1.4.2 ====== * Fix: Update dependencies. 1.4.1 ====== * Fix: Fix sequence of grouped tab color. 1.4.0 ====== * Feature: Not group for domain or sub-domain that has only 1 tab. 1.3.1 ====== * Fix: Update dependencies. 1.3.0 ====== * Feature: Remove duplicated tabs. 1.2.3 ====== * Fix: ccTLD considerations (e.g. ``.co.jp``, ``.com.hk``). 1.2.2 ====== * Fix: Remove attribute type domain (e.g. ``.lg.jp``). 1.2.1 ======= * Fix: Order of grouped tabs. 1.2.0 ======= * Feature: Group tabs by domain name ignore sub-domain. * Refactor: Rewritten in TypeScript 1.1.0 ======= * Improvement: Sort tab group by title * Fix: Tab group title shortly * Fix: Sort function (sort url without ``www``) * Fix: Tab group color being set not randomly 1.0.0 ======= * Release 🎉 https://github.com/michimani/chrome-tab-ex/blob/main/CHANGELOG.rst # Access to data This extension access all tabs, but uses only the URL of the site open in the tab. Use this information when sorting or grouping tabs. ---------------------------------------------------------------- これは、タブをソートしてグループ化する Chrome 拡張機能です。 # 機能 * URLでタブをソートする * ドメインごとにタブをグループ化する * サブドメインを無視してドメインごとにタブをグループ化する * すべてのタブのグループ化を解除する # 変更履歴 1.4.2 ====== * 修正: 依存ライブラリの更新 1.4.1 ====== * 修正: グループ化されたタブの色の順番を修正 1.4.0 ====== * 機能: グループ化対象のタブが 1 つのみの場合はグループ化しない 1.3.1 ====== * 修正: 依存ライブラリの更新 1.3.0 ====== * 機能:重複したタブの削除 1.2.3 ======= * 修正 1.2.2: ccTLD の考慮 (例: ``.co.jp``, ``.com.hk``) ======= * 修正:属性型ドメインの考慮 (例: ``.lg.jp``) 1.2.1 ======= * 修正:グループ化されたタブの順序 1.2.0 ======= * 機能:サブドメインを無視したドメイン名でタブをグループ化する * リファクタリング:TypeScript 1.1.0 ======= * 改善:タブグループをタイトルの昇順にする * 修正:タブグループのタイトルを短くした * 修正:ソート機能(「www」なしでURLをソート) * 修正:タブグループの色がランダムに設定されない 1.0.0 ======= * リリース🎉 # データへのアクセス この拡張機能はすべてのタブの情報にアクセスしますが、使用するのはタブで開いているサイトの URL のみです。この情報はタブをソートまたはグループ化する際に使用します。
扩展基本信息
名称 | Group Tabs |
ID | cnmcnafaccboidemenkpfnlgfcejijgm |
官方URL | https://chromewebstore.google.com/detail/group-tabs/cnmcnafaccboidemenkpfnlgfcejijgm |
简介 | Group tabs by domain. |
文件大小 | 12.92 KB |
安装次数 | 2,132 |
当前版本 | 1.4.2 |
更新时间 | 2023-07-14 |
上架时间 | 2021-06-11 |
评分 | 4.13/5 共8次评分 |
开发者 | https://michimani.net |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://michimani.net/projects/group-tabs/about/ |
帮助页面URL | https://twitter.com/michimani210 |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Group Tabs", "description": "Group tabs by domain.", "version": "1.4.2", "manifest_version": 3, "background": [], "permissions": [ "tabs", "tabGroups" ], "action": { "default_popup": "menu.html", "default_icon": { "16": "\/images\/gt_icon16.png", "32": "\/images\/gt_icon32.png", "48": "\/images\/gt_icon48.png", "128": "\/images\/gt_icon128.png" } }, "icons": { "16": "\/images\/gt_icon16.png", "32": "\/images\/gt_icon32.png", "48": "\/images\/gt_icon48.png", "128": "\/images\/gt_icon128.png" } } |