Auto Mute Tabs When Multiple Tabs Audible

This extension mutes previous audible tabs when a new tab starts making sound. Toggle mute current tab: Cmd+Shift+8

Auto Mute Tabs When Multiple Tabs Audible क्या है?

Auto Mute Tabs When Multiple Tabs Audible notTellingYa द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension mutes previous audible tabs when a new tab starts making sound. Toggle mute current tab: Cmd+Shift+8"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Auto Mute Tabs When Multiple Tabs Audible एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        This extension lets you control mute status of multiple tabs.  Often while you're listening to something from one tab, another tab starts to make sound. This can be annoying. So this extension will automatically mute the previous tab that was making sound.

It works like a stack - think a stack of cards, only the one on top is visible - similarly, only the last tab that's making sound will be allowed to stay unmuted. Once the current audible tab stops making any sounds, the previous tab will be unmuted again.

There are a few keyboard shortcuts you can use:

Cmd+Shift+0 -> Mute all tabs.
Cmd+Shift+8 -> Mute or unmute the current tab.
Cmd+Shift+9 -> Unmute all tabs  (although, if you have multiple audible tabs, only one will remain unmuted, rest will be muted by extension.)

Any tabs you mute with these shortcuts will not be unmuted by the extension. You have to unmute that tab with one of the shortcuts.                    

एक्सटेंशन की मूल जानकारी

नाम Auto Mute Tabs When Multiple Tabs Audible Auto Mute Tabs When Multiple Tabs Audible
ID afllllfcchjcbjeahaonfcogmbgcnfdd
आधिकारिक URL https://chromewebstore.google.com/detail/auto-mute-tabs-when-multi/afllllfcchjcbjeahaonfcogmbgcnfdd
विवरण This extension mutes previous audible tabs when a new tab starts making sound. Toggle mute current tab: Cmd+Shift+8
फ़ाइल का आकार 8.78 KB
स्थापना संख्या 749
वर्तमान संस्करण 0.1.0
अंतिम अपडेट 2023-08-24
प्रकाशन तिथि 2015-12-11
रेटिंग 4.40/5 कुल 25 रेटिंग्स
डेवलपर notTellingYa
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "short_name": "Mute Control",
    "name": "Auto Mute Tabs When Multiple Tabs Audible",
    "description": "This extension mutes previous audible tabs when a new tab starts making sound. Toggle mute current tab: Cmd+Shift+8",
    "version": "0.1.0",
    "commands": {
        "mute_toggle": {
            "suggested_key": {
                "default": "Ctrl+Shift+8"
            },
            "description": "Toggle current tab mute"
        },
        "mute_all": {
            "suggested_key": {
                "default": "Ctrl+Shift+0"
            },
            "description": "Mute all audible tabs"
        },
        "unmute_all": {
            "suggested_key": {
                "default": "Ctrl+Shift+9"
            },
            "description": "Un-mute all audible tabs"
        }
    },
    "browser_action": {
        "default_icon": "images\/play-circle-o_444444_128.png"
    },
    "icons": {
        "16": "images\/play-circle-o_444444_16.png",
        "48": "images\/play-circle-o_444444_48.png",
        "128": "images\/play-circle-o_444444_128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    }
}