Twitch Muter

Only plays audio of active twitch tab

What is Twitch Muter?

Twitch Muter is a Chrome extension developed by Meeoh, and its main feature is "Only plays audio of active twitch tab".

Extension Screenshots

screenshot

Download Twitch Muter Extension CRX File

Download Twitch Muter 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

                        Mutes inactive twitch tabs! If you ever have multiple twitch streams open at once in different tabs, but only want the active tab to have audio playing, just activate the extension via the icon in the top right, and voila!

***IMPORTANT***
With all your twitch tabs open, activate the extension and they'll all become muted, now whenever you switch tabs to a twitch stream, its audio will be activated.

Report issues here: https://github.com/meeoh/TwitchMuter/issues
View changelog here: https://github.com/meeoh/TwitchMuter/wiki/Chrome-Extension-Change-Log                    

Extension Basic Information

Name Twitch Muter Twitch Muter
ID gcikmdppgicmifbcngddbhcfmnecnejf
Official URL https://chromewebstore.google.com/detail/twitch-muter/gcikmdppgicmifbcngddbhcfmnecnejf
Description Only plays audio of active twitch tab
File Size 82.98 KB
Installation Count 64
Current Version 1.3
Last Updated 2016-10-19
Publish Date 2016-10-19
Rating 5.00/5 Total 4 Ratings
Developer Meeoh
Email [email protected]
Payment Type free
Help Page URL https://github.com/meeoh/TwitchMuter
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitch Muter",
    "description": "Only plays audio of active twitch tab",
    "version": "1.3",
    "permissions": [
        "activeTab",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "background": {
        "scripts": [
            "jquery-3.1.1.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.twitch.tv\/*"
            ],
            "js": [
                "jquery-3.1.1.js",
                "content_script.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Toggle",
        "default_icon": "volumeOff.png"
    },
    "manifest_version": 2
}