Twitch Audio Suppressor

Automatically mutes all active Twitch tabs except the one in focus.

什麼是Twitch Audio Suppressor?

Twitch Audio Suppressor是由Swampfox開發的Chrome擴展程式,該擴展的主要功能是“Automatically mutes all active Twitch tabs except the one in focus.”。

擴展截圖

下載Twitch Audio Suppressor擴展crx文件

下載Twitch Audio Suppressor擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Simple extension that listens for tabs playing audio from Twitch and only allows the active tab within the active window to play, muting all others.  I use it all the time when switching between multiple streams.                    

擴展基本資訊

名稱 Twitch Audio Suppressor Twitch Audio Suppressor
ID bkjppbhjfbafpamcciabdjkemkbkhcjb
官方網址 https://chromewebstore.google.com/detail/twitch-audio-suppressor/bkjppbhjfbafpamcciabdjkemkbkhcjb
簡介 Automatically mutes all active Twitch tabs except the one in focus.
檔案大小 35.77 KB
安裝次數 75
目前版本 1.1
更新時間 2020-09-15
上架時間 2020-04-22
開發者 Swampfox
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Twitch Audio Suppressor",
    "description": "Automatically mutes all active Twitch tabs except the one in focus.",
    "version": "1.1",
    "icons": {
        "128": "icon3_128.png",
        "48": "icon3_48.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.twitch.tv\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "content.js",
                "avatarFetcher.js",
                "menu.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "*:\/\/twitch.tv\/*",
        "activeTab",
        "*:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    }
}