codeTabber

Switch between code panes on CodePen, JSFiddle, and other online code editors, right from the keyboard.

Τι είναι το codeTabber;

Το codeTabber είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον freginold, και η κύρια λειτουργία του είναι "Switch between code panes on CodePen, JSFiddle, and other online code editors, right from the keyboard.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης codeTabber

Λήψη αρχείων επέκτασης codeTabber σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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)                    

Βασικές Πληροφορίες Επέκτασης

Όνομα codeTabber codeTabber
ID hhlhpibdcfdggipnplpdaboblfblppon
Επίσημο URL https://chromewebstore.google.com/detail/codetabber/hhlhpibdcfdggipnplpdaboblfblppon
Περιγραφή Switch between code panes on CodePen, JSFiddle, and other online code editors, right from the keyboard.
Μέγεθος Αρχείου 11.86 KB
Αριθμός Εγκαταστάσεων 70
Τρέχουσα Έκδοση 1.3.1
Τελευταία Ενημέρωση 2017-09-07
Ημερομηνία Δημοσίευσης 2017-09-07
Αξιολόγηση 5.00/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής freginold
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://tech-in-check.blogspot.com/p/codetabber-browser-extension.html
Διεύθυνση URL της Σελίδας Βοήθειας https://tech-in-check.blogspot.com/p/codetabber-browser-extension.html
Υποστηριζόμενες Γλώσσες 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"
        }
    ]
}