codeTabber
Switch between code panes on CodePen, JSFiddle, and other online code editors, right from the keyboard.
Qu'est-ce que codeTabber ?
codeTabber est une extension Chrome développée par freginold, et sa fonction principale est "Switch between code panes on CodePen, JSFiddle, and other online code editors, right from the keyboard.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension codeTabber
Téléchargez les fichiers d'extension codeTabber 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
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)
Informations de Base sur l'Extension
Nom | codeTabber |
ID | hhlhpibdcfdggipnplpdaboblfblppon |
URL Officiel | https://chromewebstore.google.com/detail/codetabber/hhlhpibdcfdggipnplpdaboblfblppon |
Description | Switch between code panes on CodePen, JSFiddle, and other online code editors, right from the keyboard. |
Taille du Fichier | 11.86 KB |
Nombre d'Installations | 70 |
Version Actuelle | 1.3.1 |
Dernière Mise à Jour | 2017-09-07 |
Date de Publication | 2017-09-07 |
Évaluation | 5.00/5 Total 3 Évaluations |
Développeur | freginold |
Type de Paiement | free |
Site Web de l'Extension | https://tech-in-check.blogspot.com/p/codetabber-browser-extension.html |
URL de la Page d'Aide | https://tech-in-check.blogspot.com/p/codetabber-browser-extension.html |
Langues Prises en Charge | 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" } ] } |