Keyboard Shortcuts to Close Other/Right Tabs
Chrome extension adding shortcuts for closing and pinning tabs.
Keyboard Shortcuts to Close Other/Right Tabs क्या है?
Keyboard Shortcuts to Close Other/Right Tabs Michael Fester द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Chrome extension adding shortcuts for closing and pinning tabs."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Keyboard Shortcuts to Close Other/Right Tabs एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
The extension consists of three keyboard shortcuts: * Alt-Shift-O: Close Other Tabs * Alt-Shift-R: Close Tabs to the Right * Alt-Shift-P: Pin Tab Note: A separate extension, tabloid, adds the following shortcuts to Chrome * Move Tab Right * Move Tab Left * Move Tab to First Position * Move Tab to Last Position Chrome extensions currently only allow for a maximum of four shortcuts, which is why they are not included in tabasco. You can fetch tabloid here: https://chrome.google.com/webstore/detail/femidpfpildjfepkcaodpalpakgadjih
एक्सटेंशन की मूल जानकारी
नाम | Keyboard Shortcuts to Close Other/Right Tabs |
ID | dkoadhojigekhckndaehenfbhcgfeepl |
आधिकारिक URL | https://chromewebstore.google.com/detail/keyboard-shortcuts-to-clo/dkoadhojigekhckndaehenfbhcgfeepl |
विवरण | Chrome extension adding shortcuts for closing and pinning tabs. |
फ़ाइल का आकार | 4.03 KB |
स्थापना संख्या | 20,000 |
वर्तमान संस्करण | 1.0.1 |
अंतिम अपडेट | 2023-10-28 |
प्रकाशन तिथि | 2013-01-23 |
रेटिंग | 4.33/5 कुल 72 रेटिंग्स |
डेवलपर | Michael Fester |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://michaelfester.com |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Keyboard Shortcuts to Close Other\/Right Tabs", "version": "1.0.1", "manifest_version": 3, "description": "Chrome extension adding shortcuts for closing and pinning tabs.", "background": { "service_worker": "background.js" }, "permissions": [ "tabs", "activeTab", "tabGroups" ], "commands": { "close-other-tabs": { "suggested_key": { "default": "Alt+Shift+O" }, "description": "Close other Tabs" }, "close-right-tabs": { "suggested_key": { "default": "Alt+Shift+R" }, "description": "Close Tabs to the right" }, "toggle-pin": { "suggested_key": { "default": "Alt+Shift+P" }, "description": "Pin\/unpin Tab" } } } |