Tab and Tab Group Shortcuts
Adds shortcuts for creating tabs, reorganizing tabs, and moving the focus.
Tab and Tab Group Shortcuts क्या है?
Tab and Tab Group Shortcuts bmalehorn द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds shortcuts for creating tabs, reorganizing tabs, and moving the focus."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Tab and Tab Group Shortcuts एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Adds multiple shortcuts to manage tabs: Opens a tab in the same group as the current tab. Mac: Command+Shift+Y Windows: Ctrl+Shift+Y Swap the tab to the left, moving into and out of opened tab groups. Visit chrome://extensions/shortcuts to bind this shortcut. Swap the tab to the right, moving into and out of opened tab groups. Visit chrome://extensions/shortcuts to bind this shortcut. Move focus to the left, moving into and out of opened tab groups. Visit chrome://extensions/shortcuts to bind this shortcut. Move focus to the right, moving into and out of opened tab groups. Visit chrome://extensions/shortcuts to bind this shortcut.
एक्सटेंशन की मूल जानकारी
नाम | |
ID | nnbnphmhdbcgnekonlgniafbpcpapkep |
आधिकारिक URL | https://chromewebstore.google.com/detail/tab-and-tab-group-shortcu/nnbnphmhdbcgnekonlgniafbpcpapkep |
विवरण | Adds shortcuts for creating tabs, reorganizing tabs, and moving the focus. |
फ़ाइल का आकार | 6.83 KB |
स्थापना संख्या | 216 |
वर्तमान संस्करण | 1.0.6 |
अंतिम अपडेट | 2023-10-08 |
प्रकाशन तिथि | 2022-07-19 |
रेटिंग | 5.00/5 कुल 4 रेटिंग्स |
डेवलपर | bmalehorn |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/bmalehorn/new-tab-in-tab-group |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tab and Tab Group Shortcuts", "description": "Adds shortcuts for creating tabs, reorganizing tabs, and moving the focus.", "version": "1.0.6", "manifest_version": 3, "permissions": [ "tabs", "tabGroups" ], "background": { "service_worker": "background.js" }, "commands": { "swap-right": { "description": "Swap tab to the right" }, "swap-left": { "description": "Swap tab to the left" }, "focus-left-into-group": { "description": "Move focus left into tab group" }, "focus-right-into-group": { "description": "Move focus right into tab group" }, "new-tab-in-group": { "description": "Open New Tab in Group", "suggested_key": { "default": "Ctrl+Shift+Y", "mac": "Command+Shift+Y" } } }, "icons": { "128": "icon.png" } } |