Twitch Muter

Only plays audio of active twitch tab

Cos'è Twitch Muter?

Twitch Muter è un'estensione di Chrome sviluppata da Meeoh, e la sua funzione principale è "Only plays audio of active twitch tab".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Twitch Muter

Scarica i file di estensione Twitch Muter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Twitch Muter Twitch Muter
ID gcikmdppgicmifbcngddbhcfmnecnejf
URL Ufficiale https://chromewebstore.google.com/detail/twitch-muter/gcikmdppgicmifbcngddbhcfmnecnejf
Descrizione Only plays audio of active twitch tab
Dimensione del File 82.98 KB
Conteggio Installazioni 64
Versione Corrente 1.3
Ultimo Aggiornamento 2016-10-19
Data di Pubblicazione 2016-10-19
Valutazione 5.00/5 Totale 4 Valutazioni
Sviluppatore Meeoh
Email [email protected]
Tipo di Pagamento free
URL della Pagina di Aiuto https://github.com/meeoh/TwitchMuter
Lingue Supportate 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
}