codeTabber
Switch between code panes on CodePen, JSFiddle, and other online code editors, right from the keyboard.
Cos'è codeTabber?
codeTabber è un'estensione di Chrome sviluppata da freginold, e la sua funzione principale è "Switch between code panes on CodePen, JSFiddle, and other online code editors, right from the keyboard.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione codeTabber
Scarica i file di estensione codeTabber in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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)
Informazioni di Base sull'Estensione
Nome | codeTabber |
ID | hhlhpibdcfdggipnplpdaboblfblppon |
URL Ufficiale | https://chromewebstore.google.com/detail/codetabber/hhlhpibdcfdggipnplpdaboblfblppon |
Descrizione | Switch between code panes on CodePen, JSFiddle, and other online code editors, right from the keyboard. |
Dimensione del File | 11.86 KB |
Conteggio Installazioni | 70 |
Versione Corrente | 1.3.1 |
Ultimo Aggiornamento | 2017-09-07 |
Data di Pubblicazione | 2017-09-07 |
Valutazione | 5.00/5 Totale 3 Valutazioni |
Sviluppatore | freginold |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://tech-in-check.blogspot.com/p/codetabber-browser-extension.html |
URL della Pagina di Aiuto | https://tech-in-check.blogspot.com/p/codetabber-browser-extension.html |
Lingue Supportate | 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" } ] } |