Keyboard Shortcuts to Reorder Tabs
Chrome extension adding shortcuts for moving tabs around
Keyboard Shortcuts to Reorder Tabs क्या है?
Keyboard Shortcuts to Reorder Tabs Michael Fester द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Chrome extension adding shortcuts for moving tabs around"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Keyboard Shortcuts to Reorder Tabs एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
The extension consists of four keyboard shortcuts (VIM style): * Alt-Shift-L: Move Tab Right * Alt-Shift-H: Move Tab Left * Alt-Shift-K: Move Tab to Start Position * Alt-Shift-J: Move Tab to End Position A separate extension, tabasco, adds the following shortcuts to Chrome * Close Other Tabs * Close Tabs to the Right * Pin Tab Chrome extensions currently only allow for a maximum of four shortcuts, which is why they are not included in tabloid. You can fetch tabasco here: https://chrome.google.com/webstore/detail/tabasco/dkoadhojigekhckndaehenfbhcgfeepl
एक्सटेंशन की मूल जानकारी
नाम | Keyboard Shortcuts to Reorder Tabs |
ID | femidpfpildjfepkcaodpalpakgadjih |
आधिकारिक URL | https://chromewebstore.google.com/detail/keyboard-shortcuts-to-reo/femidpfpildjfepkcaodpalpakgadjih |
विवरण | Chrome extension adding shortcuts for moving tabs around |
फ़ाइल का आकार | 3.75 KB |
स्थापना संख्या | 355 |
वर्तमान संस्करण | 1.0.0 |
अंतिम अपडेट | 2023-10-27 |
प्रकाशन तिथि | 2013-01-23 |
रेटिंग | 4.25/5 कुल 16 रेटिंग्स |
डेवलपर | Michael Fester |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://michaelfester.com |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Keyboard Shortcuts to Reorder Tabs", "version": "1.0.0", "manifest_version": 3, "description": "Chrome extension adding shortcuts for moving tabs around", "background": { "service_worker": "background.js" }, "commands": { "move-tab-right": { "suggested_key": { "default": "Alt+Shift+L" }, "description": "Move Tab to the right" }, "move-tab-left": { "suggested_key": { "default": "Alt+Shift+H" }, "description": "Move Tab to the left" }, "move-tab-first": { "suggested_key": { "default": "Alt+Shift+K" }, "description": "Move Tab to first position" }, "move-tab-last": { "suggested_key": { "default": "Alt+Shift+J" }, "description": "Move Tab to last position" } } } |