Mute Other Tabs
Smart Mute other tabs automatically even without clicking.
Mute Other Tabs क्या है?
Mute Other Tabs ugurkaya88 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Smart Mute other tabs automatically even without clicking."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Mute Other Tabs एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
'Smart Mute' other tabs automatically even without clicking. It is irritating to have multiple tabs playing audio in the background and you can't even find out where that sound comes from. This extension handles this for you automatically and you don't even need to do anything else but installing the extension. If you want to control the behaviour of the extension, you can simple use the extension popup user interface; * to change smart mute behaviour * to mute / unmute other tabs or you can use the predefined shortcuts for muting and unmuting. Mute: * CTRL + SHIFT + I * COMMAND + SHIFT + I Unmute: * CTRL + SHIFT + U * COMMAND + SHIFT + U
एक्सटेंशन की मूल जानकारी
नाम | |
ID | pcdkbmcaonbomnccedjcgjmafdocojen |
आधिकारिक URL | https://chrome.google.com/webstore/detail/mute-other-tabs/pcdkbmcaonbomnccedjcgjmafdocojen |
विवरण | Smart Mute other tabs automatically even without clicking. |
फ़ाइल का आकार | 781 KB |
स्थापना संख्या | 145 |
वर्तमान संस्करण | 0.0.11 |
अंतिम अपडेट | 2018-08-24 |
प्रकाशन तिथि | 2018-08-24 |
रेटिंग | 3.00/5 कुल 2 रेटिंग्स |
डेवलपर | ugurkaya88 |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://gitlab.com/ugurkaya88/chrome-mute-other-tabs |
सहायता पृष्ठ URL | https://gitlab.com/ugurkaya88/chrome-mute-other-tabs |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Mute Other Tabs", "short_name": "Mute Others", "version": "0.0.11", "description": "Smart Mute other tabs automatically even without clicking.", "author": "U\u011fur Kaya", "homepage_url": "https:\/\/gitlab.com\/ugurkaya88\/chrome-mute-other-tabs", "browser_action": { "default_popup": "popup\/popup.html", "default_icon": { "16": "images\/icon_16x16.png", "32": "images\/icon_32x32.png", "48": "images\/icon_48x48.png", "128": "images\/icon_128x128.png" } }, "commands": { "mute-others": { "suggested_key": { "default": "Ctrl+Shift+I", "mac": "Command+Shift+I" }, "description": "Mute other tabs" }, "unmute-others": { "suggested_key": { "default": "Ctrl+Shift+U", "mac": "Command+Shift+U" }, "description": "Unmute other tabs" } }, "permissions": [ "tabs", "storage" ], "background": { "scripts": [ "shared\/shared.js", "background.js" ], "persistent": false }, "icons": { "16": "images\/icon_16x16.png", "32": "images\/icon_32x32.png", "48": "images\/icon_48x48.png", "128": "images\/icon_128x128.png" }, "manifest_version": 2 } |