codeTabber
Switch between code panes on CodePen, JSFiddle, and other online code editors, right from the keyboard.
Co je codeTabber?
codeTabber je rozšíření Chrome vyvinuté freginold, a jeho hlavní funkcí je „Switch between code panes on CodePen, JSFiddle, and other online code editors, right from the keyboard.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření codeTabber
Stáhněte si soubory rozšíření codeTabber ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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)
Základní Informace o Rozšíření
Název | codeTabber |
ID | hhlhpibdcfdggipnplpdaboblfblppon |
Oficiální URL | https://chromewebstore.google.com/detail/codetabber/hhlhpibdcfdggipnplpdaboblfblppon |
Popis | Switch between code panes on CodePen, JSFiddle, and other online code editors, right from the keyboard. |
Velikost souboru | 11.86 KB |
Počet instalací | 70 |
Aktuální Verze | 1.3.1 |
Poslední Aktualizace | 2017-09-07 |
Datum Vydání | 2017-09-07 |
Hodnocení | 5.00/5 Celkem 3 Hodnocení |
Vývojář | freginold |
Typ Platby | free |
Webové stránky Rozšíření | https://tech-in-check.blogspot.com/p/codetabber-browser-extension.html |
URL Stránky Nápovědy | https://tech-in-check.blogspot.com/p/codetabber-browser-extension.html |
Podporované Jazyky | 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" } ] } |