codeTabber
Switch between code panes on CodePen, JSFiddle, and other online code editors, right from the keyboard.
codeTabber là gì?
codeTabber là một tiện ích mở rộng Chrome được phát triển bởi freginold, và tính năng chính của nó là "Switch between code panes on CodePen, JSFiddle, and other online code editors, right from the keyboard.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng codeTabber
Tải xuống các tệp mở rộng codeTabber dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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)
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | codeTabber |
ID | hhlhpibdcfdggipnplpdaboblfblppon |
URL Chính Thức | https://chromewebstore.google.com/detail/codetabber/hhlhpibdcfdggipnplpdaboblfblppon |
Mô tả | Switch between code panes on CodePen, JSFiddle, and other online code editors, right from the keyboard. |
Kích Thước Tệp | 11.86 KB |
Số Lần Cài Đặt | 70 |
Phiên Bản Hiện Tại | 1.3.1 |
Cập Nhật Lần Cuối | 2017-09-07 |
Ngày Phát Hành | 2017-09-07 |
Đánh Giá | 5.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | freginold |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://tech-in-check.blogspot.com/p/codetabber-browser-extension.html |
URL Trang Trợ Giúp | https://tech-in-check.blogspot.com/p/codetabber-browser-extension.html |
Ngôn Ngữ Được Hỗ Trợ | 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" } ] } |