Twitch Audio Suppressor
Automatically mutes all active Twitch tabs except the one in focus.
Co to jest Twitch Audio Suppressor?
Twitch Audio Suppressor to rozszerzenie Chrome opracowane przez Swampfox, a jego główną funkcją jest „Automatically mutes all active Twitch tabs except the one in focus.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Twitch Audio Suppressor
Pobierz pliki rozszerzeń Twitch Audio Suppressor w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Twitch Audio Suppressor |
ID | bkjppbhjfbafpamcciabdjkemkbkhcjb |
Oficjalny URL | https://chromewebstore.google.com/detail/twitch-audio-suppressor/bkjppbhjfbafpamcciabdjkemkbkhcjb |
Opis | Automatically mutes all active Twitch tabs except the one in focus. |
Rozmiar pliku | 35.77 KB |
Liczba instalacji | 75 |
Aktualna Wersja | 1.1 |
Ostatnia Aktualizacja | 2020-09-15 |
Data Publikacji | 2020-04-22 |
Deweloper | Swampfox |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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 } } |