Tab Groups Manager
A Chrome extension to manage tab groups
Tab Groups Manager क्या है?
Tab Groups Manager JichouP द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A Chrome extension to manage tab groups"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Tab Groups Manager एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension always includes tabs in tab groups. Even when you have a lot of tabs open, you can comfortably get on with the next task. With Alt + Shift + LeftArrow/RightArrow, you can swap positions with the left/right tab. With Alt + Shift + UpArrow, you can add the tab in focus to a new group. With Alt + Shift + DownArrow, you can collapse all tab groups that are not currently in focus. If you don't prefer the default shortcut keys, you can change them at chrome://extensions/shortcuts.
एक्सटेंशन की मूल जानकारी
नाम | Tab Groups Manager |
ID | mngmefbcbedaflpdbccfeceadliofapp |
आधिकारिक URL | https://chromewebstore.google.com/detail/tab-groups-manager/mngmefbcbedaflpdbccfeceadliofapp |
विवरण | A Chrome extension to manage tab groups |
फ़ाइल का आकार | 7.34 KB |
स्थापना संख्या | 49 |
वर्तमान संस्करण | 1.0.0.4 |
अंतिम अपडेट | 2023-03-19 |
प्रकाशन तिथि | 2021-04-12 |
रेटिंग | 3.67/5 कुल 3 रेटिंग्स |
डेवलपर | JichouP |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Tab Groups Manager", "version": "1.0.0.4", "description": "A Chrome extension to manage tab groups", "permissions": [ "tabGroups" ], "icons": { "16": "16.png", "48": "48.png", "128": "128.png" }, "commands": { "move_left": { "suggested_key": { "default": "Alt+Shift+Left", "windows": "Alt+Shift+Left", "mac": "Alt+Shift+Left" }, "description": "Swap positions with the left tab" }, "move_right": { "suggested_key": { "default": "Alt+Shift+Right", "windows": "Alt+Shift+Right", "mac": "Alt+Shift+Right" }, "description": "Swap positions with the right tab" }, "new_group": { "suggested_key": { "default": "Alt+Shift+Up", "windows": "Alt+Shift+Up", "mac": "Alt+Shift+Up" }, "description": "Add the tab in focus to a new group" }, "collapse": { "suggested_key": { "default": "Alt+Shift+Down", "windows": "Alt+Shift+Down", "mac": "Alt+Shift+Down" }, "description": "Collapse all tab groups that are not currently in focus." } }, "background": { "service_worker": "background.js" } } |