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
公式URL 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
Eメール [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
    }
}