Close All Tabs On Left
Closes all tabs on the left of current tab
Close All Tabs On Left क्या है?
Close All Tabs On Left Unknown द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Closes all tabs on the left of current tab"।
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Close All Tabs On Left एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
A very simple extension that closes all tabs left of the current tab in the current window. You can also use the shortcut Alt+Shift+Q to close the tabs.
एक्सटेंशन की मूल जानकारी
नाम | Close All Tabs On Left |
ID | afmdjfefjcfmedhgbegphdjhfckifaij |
आधिकारिक URL | https://chromewebstore.google.com/detail/close-all-tabs-on-left/afmdjfefjcfmedhgbegphdjhfckifaij |
विवरण | Closes all tabs on the left of current tab |
फ़ाइल का आकार | 6.72 KB |
स्थापना संख्या | 1,286 |
वर्तमान संस्करण | 1.2 |
अंतिम अपडेट | 2018-04-20 |
प्रकाशन तिथि | 2018-04-20 |
रेटिंग | 5.00/5 कुल 8 रेटिंग्स |
डेवलपर | Unknown |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Close All Tabs On Left", "description": "Closes all tabs on the left of current tab", "version": "1.2", "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "icon.png" }, "commands": { "close-all-left-tabs": { "suggested_key": { "default": "Alt+Shift+Q", "mac": "Alt+Shift+Q" }, "description": "Close all tabs on the left of current tab" } }, "permissions": [ "tabs" ] } |