Keyboard shortcuts to close Chrome tabs
Added the missing hotkeys to control Chrome tabs. Now you can use shortcuts to close left/right/other tabs or toggle pinned ones
Keyboard shortcuts to close Chrome tabs क्या है?
Keyboard shortcuts to close Chrome tabs https://diophung.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Added the missing hotkeys to control Chrome tabs. Now you can use shortcuts to close left/right/other tabs or toggle pinned ones"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Keyboard shortcuts to close Chrome tabs एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Ever wish Chrome has the hotkeys to close tabs to the right, or to the left, or pin current tab? This extension will let you do it, and there are more. You can configure the hotkeys to: - Close tabs to the left. - Close tabs to the right. - Close other tabs. - Pin/unpin a tab. Source code available at : https://github.com/diophung/close-chrome-tabs Please provide your feedback to Twitter: @diophung or email : [email protected].
एक्सटेंशन की मूल जानकारी
नाम | Keyboard shortcuts to close Chrome tabs |
ID | fipfgiejfpcdacpjepkohdlnjonchnal |
आधिकारिक URL | https://chromewebstore.google.com/detail/keyboard-shortcuts-to-clo/fipfgiejfpcdacpjepkohdlnjonchnal |
विवरण | Added the missing hotkeys to control Chrome tabs. Now you can use shortcuts to close left/right/other tabs or toggle pinned ones |
फ़ाइल का आकार | 293 KB |
स्थापना संख्या | 4,928 |
वर्तमान संस्करण | 0.3.0 |
अंतिम अपडेट | 2022-02-07 |
प्रकाशन तिथि | 2018-06-24 |
रेटिंग | 4.64/5 कुल 25 रेटिंग्स |
डेवलपर | https://diophung.com |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/diophung/close-chrome-tabs |
सहायता पृष्ठ URL | https://diophung.com/chrome-tab-shortcut-privacy-policy/ |
गोपनीयता नीति पृष्ठ URL | https://github.com/diophung/close-chrome-tabs/wiki/Privacy-Policy |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "persistent": false, "scripts": [ "background.js" ] }, "commands": { "close-other-tabs-dp": { "description": "Close other tabs", "suggested_key": { "default": "Alt+Shift+W" } }, "close-left-tabs-dp": { "description": "Close tabs to the left", "suggested_key": { "default": "Alt+Shift+L" } }, "close-right-tabs-dp": { "description": "Close tabs to the right", "suggested_key": { "default": "Alt+Shift+R" } }, "toggle-pin-dp": { "description": "Pin\/unpin Tab", "suggested_key": { "default": "Alt+Shift+P" } } }, "description": "Added the missing hotkeys to control Chrome tabs. Now you can use shortcuts to close left\/right\/other tabs or toggle pinned ones", "icons": { "128": "images\/tabs_128.png", "48": "images\/tabs_48.png" }, "manifest_version": 2, "name": "Keyboard shortcuts to close Chrome tabs", "short_name": "Shortcuts to close tabs", "options_page": "options.html", "permissions": [], "version": "0.3.0" } |