Mute Noisy Tabs

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

What is Mute Noisy Tabs?

Mute Noisy Tabs is a Chrome extension developed by PS, and its main feature is "Toggles the mute for audible tabs. Kills the muted tabs, if desired.".

Download Mute Noisy Tabs Extension CRX File

Download Mute Noisy Tabs extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Mute Noisy Tabs Mute Noisy Tabs
ID dopffpdmflkogolakidlgbnonnbelmlg
Official URL https://chromewebstore.google.com/detail/mute-noisy-tabs/dopffpdmflkogolakidlgbnonnbelmlg
Description Toggles the mute for audible tabs. Kills the muted tabs, if desired.
File Size 27.33 KB
Installation Count 26
Current Version 0.1
Last Updated 2016-03-21
Publish Date 2016-03-21
Developer PS
Payment Type free
Supported Languages 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
}