Tab Cycler
Simple extension that allows you to customize the key-shortcuts for cycling left and right between tabs. Defaults: Alt-Shift-Left…
Tab Cycler क्या है?
Tab Cycler benl द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Simple extension that allows you to customize the key-shortcuts for cycling left and right between tabs. Defaults: Alt-Shift-Left…"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Tab Cycler एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Simple extension that allows you to customize the key-shortcuts for cycling left and right between tabs. Defaults: Alt-Shift-Left Arrow -> Cycle tab left. Alt-Shift-Right Arrow -> Cycle tab right. To customize shortcuts: Settings -> Extensions -> Keyboard shortcuts (bottom of page) Code hosted at: https://github.com/benletchford/chrome-tab-cycler
एक्सटेंशन की मूल जानकारी
नाम | Tab Cycler |
ID | bognkjnmfbfjobpbmbnnhhojmikehonf |
आधिकारिक URL | https://chromewebstore.google.com/detail/tab-cycler/bognkjnmfbfjobpbmbnnhhojmikehonf |
विवरण | Simple extension that allows you to customize the key-shortcuts for cycling left and right between tabs. Defaults: Alt-Shift-Left… |
फ़ाइल का आकार | 5.02 KB |
स्थापना संख्या | 58 |
वर्तमान संस्करण | 0.2 |
अंतिम अपडेट | 2016-08-01 |
प्रकाशन तिथि | 2016-07-31 |
रेटिंग | 5.00/5 कुल 2 रेटिंग्स |
डेवलपर | benl |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Tab Cycler", "version": "0.2", "icons": { "128": "icon.png" }, "permissions": [ "tabs", "activeTab" ], "background": { "scripts": [ "background.js" ] }, "commands": { "left": { "suggested_key": { "default": "Alt+Shift+Left" }, "description": "Cycle to left tab." }, "right": { "suggested_key": { "default": "Alt+Shift+Right" }, "description": "Cycle to right tab." } } } |