Twitch Audio Controller
An Audio Controller for all twitch streams currently opened on the Chrome window
O que é Twitch Audio Controller?
Twitch Audio Controller é uma extensão do Chrome desenvolvida por Yrk06, e sua principal característica é "An Audio Controller for all twitch streams currently opened on the Chrome window".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Twitch Audio Controller
Baixe arquivos de extensão Twitch Audio Controller no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
Twitch Audio Controller adds a new way to manage the volume and balance of all twitch streams currently open on the chrome window. Do you want to listen to a background music stream while watching you favorite streamer? We got you
Informações Básicas da Extensão
Nome | Twitch Audio Controller |
ID | kbekjcnajpgipojaddlaedceecednfhi |
URL Oficial | https://chromewebstore.google.com/detail/twitch-audio-controller/kbekjcnajpgipojaddlaedceecednfhi |
Descrição | An Audio Controller for all twitch streams currently opened on the Chrome window |
Tamanho do Arquivo | 195 KB |
Contagem de Instalações | 45 |
Versão Atual | 0.1.0 |
Última Atualização | 2021-05-17 |
Data de Publicação | 2021-05-16 |
Classificação | 3.00/5 Total de 2 Avaliações |
Desenvolvedor | Yrk06 |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Twitch Audio Controller", "description": "An Audio Controller for all twitch streams currently opened on the Chrome window", "version": "0.1.0", "manifest_version": 3, "background": { "service_worker": "backend.js" }, "permissions": [ "tabs", "storage" ], "action": { "default_popup": "src\/ui\/popup\/index.html" }, "content_scripts": [ { "js": [ "twitch.js" ], "matches": [ "https:\/\/www.twitch.tv\/*" ], "run_at": "document_end" } ], "icons": { "16": "icon_small.png", "128": "icon.png" } } |