Twitch Muter

Only plays audio of active twitch tab

Qu'est-ce que Twitch Muter ?

Twitch Muter est une extension Chrome développée par Meeoh, et sa fonction principale est "Only plays audio of active twitch tab".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Twitch Muter

Téléchargez les fichiers d'extension Twitch Muter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Twitch Muter Twitch Muter
ID gcikmdppgicmifbcngddbhcfmnecnejf
URL Officiel https://chromewebstore.google.com/detail/twitch-muter/gcikmdppgicmifbcngddbhcfmnecnejf
Description Only plays audio of active twitch tab
Taille du Fichier 82.98 KB
Nombre d'Installations 64
Version Actuelle 1.3
Dernière Mise à Jour 2016-10-19
Date de Publication 2016-10-19
Évaluation 5.00/5 Total 4 Évaluations
Développeur Meeoh
Email [email protected]
Type de Paiement free
URL de la Page d'Aide https://github.com/meeoh/TwitchMuter
Langues Prises en Charge 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
}