Tab Manager Shortcuts
Manage your chrome tabs with keyboard shortcuts.
Qu'est-ce que Tab Manager Shortcuts ?
Tab Manager Shortcuts est une extension Chrome développée par Daniel Pham, et sa fonction principale est "Manage your chrome tabs with keyboard shortcuts.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Tab Manager Shortcuts
Téléchargez les fichiers d'extension Tab Manager Shortcuts 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
Reorder and manage the chrome tabs with customizable keyboard shortcuts As of v2.0 keybindings must be set through the "Keyboard Shortcut" menu at the bottom right in the Chrome extension settings as defaults are not longer set (see https://bugs.chromium.org/p/chromium/issues/detail?id=167419). Source Code: https://github.com/danhp/tab-manager-chrome
Informations de Base sur l'Extension
Nom | Tab Manager Shortcuts |
ID | oofoadncochbkbpebpbndghocapamchi |
URL Officiel | https://chromewebstore.google.com/detail/tab-manager-shortcuts/oofoadncochbkbpebpbndghocapamchi |
Description | Manage your chrome tabs with keyboard shortcuts. |
Taille du Fichier | 21.21 KB |
Nombre d'Installations | 314 |
Version Actuelle | 2.0.0 |
Dernière Mise à Jour | 2016-12-27 |
Date de Publication | 2016-12-27 |
Évaluation | 3.36/5 Total 11 Évaluations |
Développeur | Daniel Pham |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/danhp/tab-manager-chrome |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Tab Manager Shortcuts", "version": "2.0.0", "description": "Manage your chrome tabs with keyboard shortcuts.", "homepage_url": "https:\/\/phamdaniel.github.io", "icons": { "16": "imgs\/16.png", "48": "imgs\/48.png", "128": "imgs\/128.png" }, "background": { "persisten": false, "scripts": [ "background.js" ] }, "commands": { "tab_manager_pin_current": { "description": "Pin or unpin current tab." }, "tab_manager_unpin_all": { "description": "Unpin all tabs in current window" }, "tab_manager_move_left": { "description": "Move selected tab left" }, "tab_manager_move_right": { "description": "Move selected tab right" }, "tab_manager_browse_left": { "description": "Switch\/browse tab left" }, "tab_manager_browse_right": { "description": "Switch\/browse tab right" } } } |