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文件

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