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 là gì?
Twitch Multi Stream Auto-Mute là một tiện ích mở rộng Chrome được phát triển bởi Mickaël Allonneau, và tính năng chính của nó là "Automatically mutes Twitch streams you have open but are not watching. Very handy when following several streams at once.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Twitch Multi Stream Auto-Mute
Tải xuống các tệp mở rộng Twitch Multi Stream Auto-Mute dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Twitch Multi Stream Auto-Mute |
ID | dnjockganjfnlkfengbekkkbplpfpold |
URL Chính Thức | https://chromewebstore.google.com/detail/twitch-multi-stream-auto/dnjockganjfnlkfengbekkkbplpfpold |
Mô tả | Automatically mutes Twitch streams you have open but are not watching. Very handy when following several streams at once. |
Kích Thước Tệp | 5.83 KB |
Số Lần Cài Đặt | 171 |
Phiên Bản Hiện Tại | 1.1.1 |
Cập Nhật Lần Cuối | 2023-09-01 |
Ngày Phát Hành | 2021-05-08 |
Đánh Giá | 4.67/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | Mickaël Allonneau |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/flawyte/twitch-multi-stream-auto-mute |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |