Keyboard Shortcuts to Reorder Tabs
Chrome extension adding shortcuts for moving tabs around
什么是Keyboard Shortcuts to Reorder Tabs?
Keyboard Shortcuts to Reorder Tabs是由Michael Fester开发的Chrome扩展程序,该扩展的主要功能是“Chrome extension adding shortcuts for moving tabs around”。
扩展截图
下载Keyboard Shortcuts to Reorder Tabs扩展crx文件
下载Keyboard Shortcuts to Reorder Tabs扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
The extension consists of four keyboard shortcuts (VIM style): * Alt-Shift-L: Move Tab Right * Alt-Shift-H: Move Tab Left * Alt-Shift-K: Move Tab to Start Position * Alt-Shift-J: Move Tab to End Position A separate extension, tabasco, adds the following shortcuts to Chrome * Close Other Tabs * Close Tabs to the Right * Pin Tab Chrome extensions currently only allow for a maximum of four shortcuts, which is why they are not included in tabloid. You can fetch tabasco here: https://chrome.google.com/webstore/detail/tabasco/dkoadhojigekhckndaehenfbhcgfeepl
扩展基本信息
名称 | Keyboard Shortcuts to Reorder Tabs |
ID | femidpfpildjfepkcaodpalpakgadjih |
官方URL | https://chromewebstore.google.com/detail/keyboard-shortcuts-to-reo/femidpfpildjfepkcaodpalpakgadjih |
简介 | Chrome extension adding shortcuts for moving tabs around |
文件大小 | 3.75 KB |
安装次数 | 355 |
当前版本 | 1.0.0 |
更新时间 | 2023-10-27 |
上架时间 | 2013-01-23 |
评分 | 4.25/5 共16次评分 |
开发者 | Michael Fester |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://michaelfester.com |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Keyboard Shortcuts to Reorder Tabs", "version": "1.0.0", "manifest_version": 3, "description": "Chrome extension adding shortcuts for moving tabs around", "background": { "service_worker": "background.js" }, "commands": { "move-tab-right": { "suggested_key": { "default": "Alt+Shift+L" }, "description": "Move Tab to the right" }, "move-tab-left": { "suggested_key": { "default": "Alt+Shift+H" }, "description": "Move Tab to the left" }, "move-tab-first": { "suggested_key": { "default": "Alt+Shift+K" }, "description": "Move Tab to first position" }, "move-tab-last": { "suggested_key": { "default": "Alt+Shift+J" }, "description": "Move Tab to last position" } } } |