Mute Noisy Tabs

Toggles the mute for audible tabs. Kills the muted tabs, if desired.

Mute Noisy Tabs क्या है?

Mute Noisy Tabs PS द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Toggles the mute for audible tabs. Kills the muted tabs, if desired."।

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

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

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

                        The extension helps manage the tabs which are audible (producing sound). You can use the extension to mute/unmute all the tabs which are audible. These tabs can also be closed, if desired.

Usage:
- Click the extension button to toggle the mute status for the audible tabs.
- Alternatively, use the keyboard shortcut 'Ctrl+M' (or 'Command+M') to toggle the mute/unmute status.
- To close all muted tabs, press 'Ctrl+Shift+Comma' (or 'Command+Shift+Comma').
- To close all audible tabs, press 'Ctrl+Shift+Comma' twice.                    

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

नाम Mute Noisy Tabs Mute Noisy Tabs
ID dopffpdmflkogolakidlgbnonnbelmlg
आधिकारिक URL https://chromewebstore.google.com/detail/mute-noisy-tabs/dopffpdmflkogolakidlgbnonnbelmlg
विवरण Toggles the mute for audible tabs. Kills the muted tabs, if desired.
फ़ाइल का आकार 27.33 KB
स्थापना संख्या 26
वर्तमान संस्करण 0.1
अंतिम अपडेट 2016-03-21
प्रकाशन तिथि 2016-03-21
डेवलपर PS
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Mute Noisy Tabs",
    "description": "Toggles the mute for audible tabs. Kills the muted tabs, if desired.",
    "version": "0.1",
    "browser_action": {
        "default_icon": "soundOn.png"
    },
    "background": {
        "scripts": [
            "eventpage.js"
        ],
        "persistent": false
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+M",
                "mac": "Command+M"
            },
            "description": "Simulates the standard browser action button click."
        },
        "killAudibleTabs": {
            "suggested_key": {
                "default": "Ctrl+Shift+Comma",
                "mac": "Command+Shift+Comma"
            },
            "description": "Kills the muted tabs."
        }
    },
    "permissions": [
        "tabs"
    ],
    "offline_enabled": true
}