Tab Grouper
Consolidate your tabs into a list.
什么是Tab Grouper?
Tab Grouper是由Leslie Heinzen开发的Chrome扩展程序,该扩展的主要功能是“Consolidate your tabs into a list.”。
扩展截图
下载Tab Grouper扩展crx文件
下载Tab Grouper扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Tab Grouper will gobble up and close all of your open tabs, and spit them out into a list on a single, new, fresh tab. 扩展基本信息
| 名称 | |
| ID | mbgligdomdgbbenibfnlociabpmidilp |
| 官方URL | https://chrome.google.com/webstore/detail/tab-grouper/mbgligdomdgbbenibfnlociabpmidilp |
| 简介 | Consolidate your tabs into a list. |
| 文件大小 | 11.99 KB |
| 安装次数 | 18 |
| 当前版本 | 0.3.0 |
| 更新时间 | 2018-05-10 |
| 上架时间 | 2018-05-10 |
| 开发者 | Leslie Heinzen |
| 付费类型 | free |
| 帮助页面URL | https://github.com/Zero-man/tab-grouper-chrome/issues |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Tab Grouper",
"version": "0.3.0",
"description": "Consolidate your tabs into a list.",
"homepage_url": "https:\/\/github.com\/Zero-man\/tab-grouper-chrome",
"icons": {
"32": "icons\/fish-64.png",
"48": "icons\/fish-64.png",
"64": "icons\/fish-64.png"
},
"background": {
"scripts": [
"background.js"
]
},
"commands": {
"group-tabs": {
"suggested_key": {
"default": "Alt+Shift+G"
},
"description": "Close all tabs."
}
},
"permissions": [
"tabs"
],
"browser_action": {
"browser_style": true,
"default_icon": {
"32": "icons\/fish-64.png"
},
"default_title": "TabGrouper",
"default_popup": "popup\/popup.html"
}
} | |