Tab grouper
A tab grouping extension by Explosion-Scratch. This extension is open source here:…
什么是Tab grouper?
Tab grouper是由Explosion-Scratch开发的Chrome扩展程序,该扩展的主要功能是“A tab grouping extension by Explosion-Scratch. This extension is open source here:…”。
扩展截图
下载Tab grouper扩展crx文件
下载Tab grouper扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A tab grouping extension by Explosion-Scratch. This extension is open source here: https://github.com/Explosion-Scratch/tab_grouping This extension allows automatically grouping tabs, manually grouping tabs, ungrouping them, naming the groups automatically and so much more!
扩展基本信息
名称 | Tab grouper |
ID | ebaakekgcpaojdlfcfmlaelgaacmdeje |
官方URL | https://chromewebstore.google.com/detail/tab-grouper/ebaakekgcpaojdlfcfmlaelgaacmdeje |
简介 | A tab grouping extension by Explosion-Scratch. This extension is open source here:… |
文件大小 | 31.63 KB |
安装次数 | 93 |
当前版本 | 1.0.0 |
更新时间 | 2021-12-05 |
上架时间 | 2021-12-03 |
评分 | 5.00/5 共2次评分 |
开发者 | Explosion-Scratch |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tab grouper", "version": "1.0.0", "background": { "service_worker": "background.js" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png", "256": "icon256.png" }, "permissions": [ "tabs", "tabGroups", "storage" ], "manifest_version": 3, "action": { "default_popup": "popup.html" }, "options_ui": { "page": "settings.html", "open_in_tab": true }, "commands": { "group": { "suggested_key": { "default": "Ctrl+G" }, "description": "Group tabs in the current window by domain" }, "collapse": { "suggested_key": { "default": "Ctrl+Shift+G" }, "description": "Collapse non focused tab groups in the current window" }, "ungroup": { "description": "Ungroup all tabs in the current window" } } } |