Switch Tab Shortcut
Customize chrome shortcut to switch tabs
Qu'est-ce que Switch Tab Shortcut ?
Switch Tab Shortcut est une extension Chrome développée par Stanley Guevara, et sa fonction principale est "Customize chrome shortcut to switch tabs".
Télécharger le fichier CRX de l'extension Switch Tab Shortcut
Téléchargez les fichiers d'extension Switch Tab Shortcut 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
Simple extension for switching to next/previous tab. Just go to chrome://extensions scroll down to "Keyboard shortcuts" and set desired keys.
Informations de Base sur l'Extension
Nom | Switch Tab Shortcut |
ID | pfeobfgjcmcpgkodpodibnggeanmoddk |
URL Officiel | https://chromewebstore.google.com/detail/switch-tab-shortcut/pfeobfgjcmcpgkodpodibnggeanmoddk |
Description | Customize chrome shortcut to switch tabs |
Taille du Fichier | 3.37 KB |
Nombre d'Installations | 27 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2016-10-16 |
Date de Publication | 2016-10-16 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | Stanley Guevara |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/stanleyguevara/chrome-switch-tab-shortcut |
URL de la Page d'Aide | https://github.com/stanleyguevara/chrome-switch-tab-shortcut |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Switch Tab Shortcut", "permissions": [ "tabs" ], "version": "1.0", "description": "Customize chrome shortcut to switch tabs", "commands": { "next-tab": { "suggested_key": { "default": "Ctrl+Right", "mac": "Command+Right" }, "description": "Next tab" }, "prev-tab": { "suggested_key": { "default": "Ctrl+Left", "mac": "Command+Left" }, "description": "Prev tab" } }, "background": { "scripts": [ "main.js" ], "persistent": false } } |