Keyboard Shortcuts to Close Other/Right Tabs
Chrome extension adding shortcuts for closing and pinning tabs.
什么是Keyboard Shortcuts to Close Other/Right Tabs?
Keyboard Shortcuts to Close Other/Right Tabs是由Michael Fester开发的Chrome扩展程序,该扩展的主要功能是“Chrome extension adding shortcuts for closing and pinning tabs.”。
扩展截图
下载Keyboard Shortcuts to Close Other/Right Tabs扩展crx文件
下载Keyboard Shortcuts to Close Other/Right Tabs扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
The extension consists of three keyboard shortcuts:
* Alt-Shift-O: Close Other Tabs
* Alt-Shift-R: Close Tabs to the Right
* Alt-Shift-P: Pin Tab
Note: A separate extension, tabloid, adds the following shortcuts to Chrome
* Move Tab Right
* Move Tab Left
* Move Tab to First Position
* Move Tab to Last Position
Chrome extensions currently only allow for a maximum of four shortcuts, which is why they are not included in tabasco.
You can fetch tabloid here: https://chrome.google.com/webstore/detail/femidpfpildjfepkcaodpalpakgadjih 扩展基本信息
| 名称 | |
| ID | dkoadhojigekhckndaehenfbhcgfeepl |
| 官方URL | https://chromewebstore.google.com/detail/keyboard-shortcuts-to-clo/dkoadhojigekhckndaehenfbhcgfeepl |
| 简介 | Chrome extension adding shortcuts for closing and pinning tabs. |
| 文件大小 | 4.03 KB |
| 安装次数 | 20,000 |
| 当前版本 | 1.0.1 |
| 更新时间 | 2023-10-28 |
| 上架时间 | 2013-01-23 |
| 评分 | 4.33/5 共72次评分 |
| 开发者 | Michael Fester |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://michaelfester.com |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Keyboard Shortcuts to Close Other\/Right Tabs",
"version": "1.0.1",
"manifest_version": 3,
"description": "Chrome extension adding shortcuts for closing and pinning tabs.",
"background": {
"service_worker": "background.js"
},
"permissions": [
"tabs",
"activeTab",
"tabGroups"
],
"commands": {
"close-other-tabs": {
"suggested_key": {
"default": "Alt+Shift+O"
},
"description": "Close other Tabs"
},
"close-right-tabs": {
"suggested_key": {
"default": "Alt+Shift+R"
},
"description": "Close Tabs to the right"
},
"toggle-pin": {
"suggested_key": {
"default": "Alt+Shift+P"
},
"description": "Pin\/unpin Tab"
}
}
} | |