Tab Cycler
Simple extension that allows you to customize the key-shortcuts for cycling left and right between tabs. Defaults: Alt-Shift-Left…
Qu'est-ce que Tab Cycler ?
Tab Cycler est une extension Chrome développée par benl, et sa fonction principale est "Simple extension that allows you to customize the key-shortcuts for cycling left and right between tabs. Defaults: Alt-Shift-Left…".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Tab Cycler
Téléchargez les fichiers d'extension Tab Cycler 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 that allows you to customize the key-shortcuts for cycling left and right between tabs. Defaults: Alt-Shift-Left Arrow -> Cycle tab left. Alt-Shift-Right Arrow -> Cycle tab right. To customize shortcuts: Settings -> Extensions -> Keyboard shortcuts (bottom of page) Code hosted at: https://github.com/benletchford/chrome-tab-cycler
Informations de Base sur l'Extension
Nom | Tab Cycler |
ID | bognkjnmfbfjobpbmbnnhhojmikehonf |
URL Officiel | https://chromewebstore.google.com/detail/tab-cycler/bognkjnmfbfjobpbmbnnhhojmikehonf |
Description | Simple extension that allows you to customize the key-shortcuts for cycling left and right between tabs. Defaults: Alt-Shift-Left… |
Taille du Fichier | 5.02 KB |
Nombre d'Installations | 58 |
Version Actuelle | 0.2 |
Dernière Mise à Jour | 2016-08-01 |
Date de Publication | 2016-07-31 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | benl |
Type de Paiement | free |
Langues Prises en Charge | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Tab Cycler", "version": "0.2", "icons": { "128": "icon.png" }, "permissions": [ "tabs", "activeTab" ], "background": { "scripts": [ "background.js" ] }, "commands": { "left": { "suggested_key": { "default": "Alt+Shift+Left" }, "description": "Cycle to left tab." }, "right": { "suggested_key": { "default": "Alt+Shift+Right" }, "description": "Cycle to right tab." } } } |