Mute Tab Shortcuts
Quickly mute tabs with keyboard shortcuts
Mute Tab Shortcuts क्या है?
Mute Tab Shortcuts Daniel Pham द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Quickly mute tabs with keyboard shortcuts"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Mute Tab Shortcuts एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Keyboard shortcuts for muting tabs. Default setup: - Mute/Unmute current tab - Alt + Shift + M - Mute all except current one - Alt+Shift+N - Mute/Unmute all tabs - Alt + Shift + Comma Keybindings can be edited through the "Keyboard Shortcut" menu at the bottom right in the Chrome extension settings. Or past this in the omnibox: chrome://extensions/shortcuts Source Code: https://github.com/danhp/mute-tab-chrome Icon provided by www.72pxdesigns.com ========== CHANGELOG ========== 1.1.0 -> 1.2.0 - Shortcuts now applies to all the windows instead of just the active one. - Merge 'mute/unmute all tabs' to act like a toggle. --- 1.0.0 -> 1.1.0 - Add a shortcut to mute all except the currently selected tab. - Only mute tabs that are currently audible instead of all.
एक्सटेंशन की मूल जानकारी
नाम | Mute Tab Shortcuts |
ID | opcjanmpjbdbdpnjfjbboacibokblbhl |
आधिकारिक URL | https://chromewebstore.google.com/detail/mute-tab-shortcuts/opcjanmpjbdbdpnjfjbboacibokblbhl |
विवरण | Quickly mute tabs with keyboard shortcuts |
फ़ाइल का आकार | 9.84 KB |
स्थापना संख्या | 46,472 |
वर्तमान संस्करण | 1.2.0 |
अंतिम अपडेट | 2021-10-13 |
प्रकाशन तिथि | 2019-11-19 |
रेटिंग | 4.09/5 कुल 155 रेटिंग्स |
डेवलपर | Daniel Pham |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/danhp/mute-tab-chrome |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Mute Tab Shortcuts", "version": "1.2.0", "description": "Quickly mute tabs with keyboard shortcuts", "icons": { "16": "imgs\/16.png", "48": "imgs\/48.png", "128": "imgs\/128.png" }, "background": { "persisten": false, "scripts": [ "background.js" ] }, "commands": { "mute_tab_current": { "description": "Mute\/Unmute the selected tab", "suggested_key": { "default": "Alt+Shift+M" } }, "mute_tab_all": { "description": "Mute\/Unmute all audible tabs.", "suggested_key": { "default": "Alt+Shift+Comma" } }, "mute_tab_all_except_current": { "description": "Mute all audible tabs except current", "suggested_key": { "default": "Alt+Shift+N" } } } } |