Categorize Tabs
Group Tabs by domain
什么是Categorize Tabs?
Categorize Tabs是由yibingshi开发的Chrome扩展程序,该扩展的主要功能是“Group Tabs by domain”。
扩展截图
下载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 |
ID | oefogamggbofaeonfmkigobeflejjgei |
官方URL | 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" } } |