codeTabber
Switch between code panes on CodePen, JSFiddle, and other online code editors, right from the keyboard.
¿Qué es codeTabber?
codeTabber es una extensión de Chrome desarrollada por freginold, y su función principal es "Switch between code panes on CodePen, JSFiddle, and other online code editors, right from the keyboard.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión codeTabber
Descarga archivos de extensión codeTabber 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
codeTabber is a Chrome extension that brings panel-switching keyboard shortcuts to multiple online code editors. codeTabber allows you to switch focus between the various code panels using just the keyboard. The angle brackets, < and >, are used as facsimile arrow keys. Usage: To move focus to the next pane, press CTRL and the greater-than key (>). To switch focus to the previous pane, press CTRL and the less-than key (<). If no pane has focus when a keyboard shortcut is used, focus will be given to the first pane. (Mac users: use CTRL rather than CMD.) Supported sites: - CodePen - CSSDeck - CSSDesk - dabblet - JSBin - JSFiddle - kodtest - Liveweave - Rendera - Stack Overflow (code editor)
Información Básica de la Extensión
Nombre | codeTabber |
ID | hhlhpibdcfdggipnplpdaboblfblppon |
URL Oficial | https://chromewebstore.google.com/detail/codetabber/hhlhpibdcfdggipnplpdaboblfblppon |
Descripción | Switch between code panes on CodePen, JSFiddle, and other online code editors, right from the keyboard. |
Tamaño del Archivo | 11.86 KB |
Cantidad de Instalaciones | 70 |
Versión Actual | 1.3.1 |
Última Actualización | 2017-09-07 |
Fecha de Publicación | 2017-09-07 |
Calificación | 5.00/5 Total de 3 Calificaciones |
Desarrollador | freginold |
Tipo de Pago | free |
Sitio Web de la Extensión | https://tech-in-check.blogspot.com/p/codetabber-browser-extension.html |
URL de la Página de Ayuda | https://tech-in-check.blogspot.com/p/codetabber-browser-extension.html |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "codeTabber", "description": "Switch between code panes on CodePen, JSFiddle, and other online code editors, right from the keyboard.", "version": "1.3.1", "short_name": "codeTabber", "author": "freginold", "icons": { "48": "codetabber48.png", "38": "codetabber38.png", "19": "codetabber19.png", "16": "codetabber16.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.codepen.io\/*", "*:\/\/*.cssdeck.com\/*", "*:\/\/*.cssdesk.com\/*", "*:\/\/*.dabblet.com\/*", "*:\/\/*.jsbin.com\/*", "*:\/\/*.jsfiddle.net\/*", "*:\/\/*.kodtest.com\/*", "*:\/\/*.liveweave.com\/*", "*:\/\/*.rendera.herokuapp.com\/*", "*:\/\/*.stackoverflow.com\/*" ], "js": [ "codetabber.js" ], "run_at": "document_end" } ] } |