Tab Mover (Move tabs with keyboard shortcuts)
Move your tabs around with keyboard shortcuts
Tab Mover (Move tabs with keyboard shortcuts) क्या है?
Tab Mover (Move tabs with keyboard shortcuts) Dennis Paagman द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Move your tabs around with keyboard shortcuts"।
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Tab Mover (Move tabs with keyboard shortcuts) एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Move your tabs around with keyboard shortcuts. Installation instructions: Install the extension directly from the Chrome Web Store Scroll to the bottom of your 'Extensions' preferences Click 'Keyboard Shortcuts' at the bottom right Set your keyboard shortcuts, I use Cmd-Shift-O and Cmd-Shift-P because they sit nicely close to tab switching shortcuts Cmd-Shift-[ and Cmd-Shift-]
एक्सटेंशन की मूल जानकारी
नाम | |
ID | dbkbmgieiomjnpimkilnkkcjioecdmio |
आधिकारिक URL | https://chromewebstore.google.com/detail/tab-mover-move-tabs-with/dbkbmgieiomjnpimkilnkkcjioecdmio |
विवरण | Move your tabs around with keyboard shortcuts |
फ़ाइल का आकार | 19.11 KB |
स्थापना संख्या | 46 |
वर्तमान संस्करण | 1.2 |
अंतिम अपडेट | 2016-11-25 |
प्रकाशन तिथि | 2016-11-25 |
रेटिंग | 3.67/5 कुल 3 रेटिंग्स |
डेवलपर | Dennis Paagman |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Tab Mover (Move tabs with keyboard shortcuts)", "short_name": "Tab Mover", "description": "Move your tabs around with keyboard shortcuts", "version": "1.2", "author": "Dennis Paagman", "icons": { "128": "icon-128.png", "64": "icon-64.png" }, "background": { "scripts": [ "tabMover.js" ] }, "permissions": [ "activeTab" ], "commands": { "move-tab-left": { "suggested_key": { "default": "Ctrl+Shift+O", "mac": "Command+Shift+O" }, "description": "Move current tab to the left" }, "move-tab-right": { "suggested_key": { "default": "Ctrl+Shift+P", "mac": "Command+Shift+P" }, "description": "Move current tab to the right" } } } |