Twitch Muter

Only plays audio of active twitch tab

什么是Twitch Muter?

Twitch Muter是由Meeoh开发的Chrome扩展程序,该扩展的主要功能是“Only plays audio of active twitch tab”。

扩展截图

screenshot

下载Twitch Muter扩展crx文件

下载Twitch Muter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Twitch Muter Twitch Muter
ID gcikmdppgicmifbcngddbhcfmnecnejf
官方URL https://chromewebstore.google.com/detail/twitch-muter/gcikmdppgicmifbcngddbhcfmnecnejf
简介 Only plays audio of active twitch tab
文件大小 82.98 KB
安装次数 64
当前版本 1.3
更新时间 2016-10-19
上架时间 2016-10-19
评分 5.00/5 共4次评分
开发者 Meeoh
电子邮箱 [email protected]
付费类型 free
帮助页面URL https://github.com/meeoh/TwitchMuter
支持的语言 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
}