Tab Cycler
Simple extension that allows you to customize the key-shortcuts for cycling left and right between tabs. Defaults: Alt-Shift-Left…
¿Qué es Tab Cycler?
Tab Cycler es una extensión de Chrome desarrollada por benl, y su función principal es "Simple extension that allows you to customize the key-shortcuts for cycling left and right between tabs. Defaults: Alt-Shift-Left…".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Tab Cycler
Descarga archivos de extensión Tab Cycler 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
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
Información Básica de la Extensión
Nombre | Tab Cycler |
ID | bognkjnmfbfjobpbmbnnhhojmikehonf |
URL Oficial | https://chromewebstore.google.com/detail/tab-cycler/bognkjnmfbfjobpbmbnnhhojmikehonf |
Descripción | Simple extension that allows you to customize the key-shortcuts for cycling left and right between tabs. Defaults: Alt-Shift-Left… |
Tamaño del Archivo | 5.02 KB |
Cantidad de Instalaciones | 58 |
Versión Actual | 0.2 |
Última Actualización | 2016-08-01 |
Fecha de Publicación | 2016-07-31 |
Calificación | 5.00/5 Total de 2 Calificaciones |
Desarrollador | benl |
Tipo de Pago | free |
Idiomas Soportados | 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." } } } |