Twitch Muter

Only plays audio of active twitch tab

Vad är Twitch Muter?

Twitch Muter är en Chrome-tillägg utvecklad av Meeoh, och dess huvudfunktion är "Only plays audio of active twitch tab".

Tilläggsskärmbilder

screenshot

Ladda ner Twitch Muter-förlängningens CRX-fil

Ladda ner Twitch Muter-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Twitch Muter Twitch Muter
ID gcikmdppgicmifbcngddbhcfmnecnejf
Officiell webbadress https://chromewebstore.google.com/detail/twitch-muter/gcikmdppgicmifbcngddbhcfmnecnejf
Beskrivning Only plays audio of active twitch tab
Filstorlek 82.98 KB
Antal Installationer 64
Aktuell Version 1.3
Senast Uppdaterad 2016-10-19
Publiceringsdatum 2016-10-19
Betyg 5.00/5 Totalt 4 Betyg
Utvecklare Meeoh
E-post [email protected]
Betalningssätt free
Hjälpsida URL https://github.com/meeoh/TwitchMuter
Stödda Språk 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
}