Keyboard Shortcuts to Reorder Tabs
Chrome extension adding shortcuts for moving tabs around
¿Qué es Keyboard Shortcuts to Reorder Tabs?
Keyboard Shortcuts to Reorder Tabs es una extensión de Chrome desarrollada por Michael Fester, y su función principal es "Chrome extension adding shortcuts for moving tabs around".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Keyboard Shortcuts to Reorder Tabs
Descarga archivos de extensión Keyboard Shortcuts to Reorder Tabs en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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
Información Básica de la Extensión
Nombre | Keyboard Shortcuts to Reorder Tabs |
ID | femidpfpildjfepkcaodpalpakgadjih |
URL Oficial | https://chromewebstore.google.com/detail/keyboard-shortcuts-to-reo/femidpfpildjfepkcaodpalpakgadjih |
Descripción | Chrome extension adding shortcuts for moving tabs around |
Tamaño del Archivo | 3.75 KB |
Cantidad de Instalaciones | 355 |
Versión Actual | 1.0.0 |
Última Actualización | 2023-10-27 |
Fecha de Publicación | 2013-01-23 |
Calificación | 4.25/5 Total de 16 Calificaciones |
Desarrollador | Michael Fester |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://michaelfester.com |
Idiomas Soportados | 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" } } } |