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
官方網址 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
}