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."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ 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 |
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" } ] } |