Twitch Muter

Only plays audio of active twitch tab

Co je Twitch Muter?

Twitch Muter je rozšíření Chrome vyvinuté Meeoh, a jeho hlavní funkcí je „Only plays audio of active twitch tab“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Twitch Muter

Stáhněte si soubory rozšíření Twitch Muter ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Twitch Muter Twitch Muter
ID gcikmdppgicmifbcngddbhcfmnecnejf
Oficiální URL https://chromewebstore.google.com/detail/twitch-muter/gcikmdppgicmifbcngddbhcfmnecnejf
Popis Only plays audio of active twitch tab
Velikost souboru 82.98 KB
Počet instalací 64
Aktuální Verze 1.3
Poslední Aktualizace 2016-10-19
Datum Vydání 2016-10-19
Hodnocení 5.00/5 Celkem 4 Hodnocení
Vývojář Meeoh
E-mail [email protected]
Typ Platby free
URL Stránky Nápovědy https://github.com/meeoh/TwitchMuter
Podporované Jazyky 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
}