codeTabber
Switch between code panes on CodePen, JSFiddle, and other online code editors, right from the keyboard.
Was ist codeTabber?
codeTabber ist eine Chrome-Erweiterung, die von freginold entwickelt wurde, und ihr Hauptmerkmal ist "Switch between code panes on CodePen, JSFiddle, and other online code editors, right from the keyboard.".
Erweiterungsscreenshots
codeTabber-Erweiterungs-CRX-Datei herunterladen
Laden Sie codeTabber-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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) Grundlegende Informationen zur Erweiterung
| Name | |
| ID | hhlhpibdcfdggipnplpdaboblfblppon |
| Offizielle URL | https://chromewebstore.google.com/detail/codetabber/hhlhpibdcfdggipnplpdaboblfblppon |
| Beschreibung | Switch between code panes on CodePen, JSFiddle, and other online code editors, right from the keyboard. |
| Dateigröße | 11.86 KB |
| Installationsanzahl | 70 |
| Aktuelle Version | 1.3.1 |
| Letztes Update | 2017-09-07 |
| Veröffentlichungsdatum | 2017-09-07 |
| Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
| Entwickler | freginold |
| Zahlungsart | free |
| Erweiterungswebsite | https://tech-in-check.blogspot.com/p/codetabber-browser-extension.html |
| Hilfeseite URL | https://tech-in-check.blogspot.com/p/codetabber-browser-extension.html |
| Unterstützte Sprachen | 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"
}
]
} | |