codeTabber
Switch between code panes on CodePen, JSFiddle, and other online code editors, right from the keyboard.
codeTabber क्या है?
codeTabber freginold द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Switch between code panes on CodePen, JSFiddle, and other online code editors, right from the keyboard."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में codeTabber एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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" } ] } |