Keyboard Shortcuts to Reorder Tabs
Chrome extension adding shortcuts for moving tabs around
Qu'est-ce que Keyboard Shortcuts to Reorder Tabs ?
Keyboard Shortcuts to Reorder Tabs est une extension Chrome développée par Michael Fester, et sa fonction principale est "Chrome extension adding shortcuts for moving tabs around".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Keyboard Shortcuts to Reorder Tabs
Téléchargez les fichiers d'extension Keyboard Shortcuts to Reorder Tabs au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Keyboard Shortcuts to Reorder Tabs |
ID | femidpfpildjfepkcaodpalpakgadjih |
URL Officiel | https://chromewebstore.google.com/detail/keyboard-shortcuts-to-reo/femidpfpildjfepkcaodpalpakgadjih |
Description | Chrome extension adding shortcuts for moving tabs around |
Taille du Fichier | 3.75 KB |
Nombre d'Installations | 355 |
Version Actuelle | 1.0.0 |
Dernière Mise à Jour | 2023-10-27 |
Date de Publication | 2013-01-23 |
Évaluation | 4.25/5 Total 16 Évaluations |
Développeur | Michael Fester |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://michaelfester.com |
Langues Prises en Charge | 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" } } } |