Twitch Audio Suppressor
Automatically mutes all active Twitch tabs except the one in focus.
Apa itu Twitch Audio Suppressor?
Twitch Audio Suppressor adalah ekstensi Chrome yang dikembangkan oleh Swampfox, dan fitur utamanya adalah "Automatically mutes all active Twitch tabs except the one in focus.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Twitch Audio Suppressor
Unduh file ekstensi Twitch Audio Suppressor dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Twitch Audio Suppressor |
ID | bkjppbhjfbafpamcciabdjkemkbkhcjb |
URL Resmi | https://chromewebstore.google.com/detail/twitch-audio-suppressor/bkjppbhjfbafpamcciabdjkemkbkhcjb |
Deskripsi | Automatically mutes all active Twitch tabs except the one in focus. |
Ukuran File | 35.77 KB |
Jumlah Instalasi | 75 |
Versi Saat Ini | 1.1 |
Terakhir Diperbarui | 2020-09-15 |
Tanggal Publikasi | 2020-04-22 |
Pengembang | Swampfox |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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 } } |