Twitch Multi Stream Auto-Mute
Automatically mutes Twitch streams you have open but are not watching. Very handy when following several streams at once.
Twitch Multi Stream Auto-Muteとは何ですか?
Twitch Multi Stream Auto-MuteはMickaël Allonneauによって開発されたChromeの拡張機能で、その主な機能は「Automatically mutes Twitch streams you have open but are not watching. Very handy when following several streams at once.」です。
拡張機能のスクリーンショット
Twitch Multi Stream Auto-Mute拡張機能のCRXファイルをダウンロード
Twitch Multi Stream Auto-Mute拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension allows you to follow multiple Twitch streams at once without hearing the sound of all open streams, but only the one you're currently watching. Every time you switch tab to another Twitch stream, the one you leave is automatically muted and the one you start watching is automatically unmuted. So whether you have 1, 2 or 10 streams open in 10 different tabs, you'll only ever hear the sound of the one you're currently on.
拡張機能の基本情報
名前 | Twitch Multi Stream Auto-Mute |
ID | dnjockganjfnlkfengbekkkbplpfpold |
公式URL | https://chromewebstore.google.com/detail/twitch-multi-stream-auto/dnjockganjfnlkfengbekkkbplpfpold |
説明 | Automatically mutes Twitch streams you have open but are not watching. Very handy when following several streams at once. |
ファイルサイズ | 5.83 KB |
インストール数 | 171 |
現在のバージョン | 1.1.1 |
最終更新日 | 2023-09-01 |
公開日 | 2021-05-08 |
評価 | 4.67/5 合計 3 レビュー |
開発者 | Mickaël Allonneau |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/flawyte/twitch-multi-stream-auto-mute |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Twitch Multi Stream Auto-Mute", "version": "1.1.1", "description": "Automatically mutes Twitch streams you have open but are not watching. Very handy when following several streams at once.", "icons": { "128": "icon\/128.png" }, "background": { "scripts": [ "background-script.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/*.twitch.tv\/*" ], "js": [ "content-script.js" ], "run_at": "document_idle" } ], "permissions": [ "tabs" ] } |