codeTabber

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

codeTabber란 무엇입니까?

codeTabber은(는) freginold에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Switch between code panes on CodePen, JSFiddle, and other online code editors, right from the keyboard."입니다.

확장 프로그램 스크린샷

screenshot

codeTabber 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
        }
    ]
}