New Tab in Group
Opens a new tab in the current group via keyboard shortcut
什么是New Tab in Group?
New Tab in Group是由Toby Wolff-Maritz开发的Chrome扩展程序,该扩展的主要功能是“Opens a new tab in the current group via keyboard shortcut”。
扩展截图
下载New Tab in Group扩展crx文件
下载New Tab in Group扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A simple extension that opens a new tab in the current tab group using a shortcut.
Windows: Ctrl+Shift+Y
Mac: Command+Shift+Y
Chrome OS: Ctrl+Shift+U
Linux: Ctrl+Shift+J 扩展基本信息
| 名称 | |
| ID | cgcjmikekhoocfjbihnklkpfapmgjboi |
| 官方URL | https://chromewebstore.google.com/detail/new-tab-in-group/cgcjmikekhoocfjbihnklkpfapmgjboi |
| 简介 | Opens a new tab in the current group via keyboard shortcut |
| 文件大小 | 9.3 KB |
| 安装次数 | 63 |
| 当前版本 | 0.0.1 |
| 更新时间 | 2022-07-25 |
| 上架时间 | 2022-07-23 |
| 评分 | 5.00/5 共2次评分 |
| 开发者 | Toby Wolff-Maritz |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 帮助页面URL | https://github.com/tmaritz/chrome-extension-new-tab-in-group |
| 支持的语言 | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "New Tab in Group",
"version": "0.0.1",
"description": "Opens a new tab in the current group via keyboard shortcut",
"manifest_version": 3,
"background": {
"service_worker": "background.js"
},
"action": [],
"commands": {
"_execute_action": {
"suggested_key": {
"windows": "Ctrl+Shift+Y",
"mac": "Command+Shift+Y",
"chromeos": "Ctrl+Shift+U",
"linux": "Ctrl+Shift+J"
}
}
},
"icons": {
"16": "assets\/layer-plus16.png",
"32": "assets\/layer-plus32.png",
"64": "assets\/layer-plus64.png",
"128": "assets\/layer-plus128.png"
}
} | |