QuickShift Redux - Rearrange Chrome Tabs
Easily and quickly rearrange tabs with keyboard shortcuts.
QuickShift Redux - Rearrange Chrome Tabs क्या है?
QuickShift Redux - Rearrange Chrome Tabs Kenneth Lu द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Easily and quickly rearrange tabs with keyboard shortcuts."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में QuickShift Redux - Rearrange Chrome Tabs एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
QuickShift Redux is a Chrome extension that lets you easily and quickly rearrange tabs with keyboard shortcuts. - Move tabs to the left or right within the same window - Undock tabs to a new window - Move tabs between windows To customize your keyboard shortcuts, visit chrome://extensions/shortcuts and look for QuickShift Redux. Check out the website for more information: https://github.com/luyangkenneth/quickshift-redux
एक्सटेंशन की मूल जानकारी
नाम | QuickShift Redux - Rearrange Chrome Tabs |
ID | daiohbdbfnmpbolhbpbngdjdjcbclikm |
आधिकारिक URL | https://chromewebstore.google.com/detail/quickshift-redux-rearrang/daiohbdbfnmpbolhbpbngdjdjcbclikm |
विवरण | Easily and quickly rearrange tabs with keyboard shortcuts. |
फ़ाइल का आकार | 597 KB |
स्थापना संख्या | 192 |
वर्तमान संस्करण | 1.3.0 |
अंतिम अपडेट | 2024-02-25 |
प्रकाशन तिथि | 2019-04-25 |
रेटिंग | 4.50/5 कुल 2 रेटिंग्स |
डेवलपर | Kenneth Lu |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/luyangkenneth/quickshift-redux |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "QuickShift Redux - Rearrange Chrome Tabs", "short_name": "QuickShift Redux", "description": "Easily and quickly rearrange tabs with keyboard shortcuts.", "version": "1.3.0", "author": "Kenneth Lu", "background": { "service_worker": "service_worker.js", "type": "module" }, "commands": { "move-tabs-left": { "description": "Move tabs to the left", "suggested_key": { "default": "Ctrl+Shift+Left", "mac": "MacCtrl+Shift+Left" } }, "move-tabs-right": { "description": "Move tabs to the right", "suggested_key": { "default": "Ctrl+Shift+Right", "mac": "MacCtrl+Shift+Right" } }, "undock-tabs-to-new-window": { "description": "Undock tabs to a new window", "suggested_key": { "default": "Ctrl+Shift+U", "mac": "MacCtrl+Shift+U" } }, "move-tabs-between-windows": { "description": "Move tabs between windows", "suggested_key": { "default": "Ctrl+Shift+M", "mac": "MacCtrl+Shift+M" } } } } |