Twitch Muter
Only plays audio of active twitch tab
Twitch Muterとは何ですか?
Twitch MuterはMeeohによって開発されたChromeの拡張機能で、その主な機能は「Only plays audio of active twitch tab」です。
拡張機能のスクリーンショット
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 |
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 |
Eメール | [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 } |