Twitch Muter

Only plays audio of active twitch tab

Wat is Twitch Muter?

Twitch Muter is een Chrome-extensie ontwikkeld door Meeoh, en de belangrijkste functie is "Only plays audio of active twitch tab".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Twitch Muter

Download Twitch Muter-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Twitch Muter Twitch Muter
ID gcikmdppgicmifbcngddbhcfmnecnejf
Officiële URL https://chromewebstore.google.com/detail/twitch-muter/gcikmdppgicmifbcngddbhcfmnecnejf
Beschrijving Only plays audio of active twitch tab
Bestandsgrootte 82.98 KB
Aantal Installaties 64
Huidige Versie 1.3
Laatst Bijgewerkt 2016-10-19
Publicatiedatum 2016-10-19
Beoordeling 5.00/5 Totaal 4 Beoordelingen
Ontwikkelaar Meeoh
E-mail [email protected]
Betalingswijze free
Help Pagina-URL https://github.com/meeoh/TwitchMuter
Ondersteunde Talen 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
}