Twitch Audio Controller
An Audio Controller for all twitch streams currently opened on the Chrome window
什麼是Twitch Audio Controller?
Twitch Audio Controller是由Yrk06開發的Chrome擴展程式,該擴展的主要功能是“An Audio Controller for all twitch streams currently opened on the Chrome window”。
擴展截圖
下載Twitch Audio Controller擴展crx文件
下載Twitch Audio Controller擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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
擴展基本資訊
名稱 | Twitch Audio Controller |
ID | kbekjcnajpgipojaddlaedceecednfhi |
官方網址 | https://chromewebstore.google.com/detail/twitch-audio-controller/kbekjcnajpgipojaddlaedceecednfhi |
簡介 | An Audio Controller for all twitch streams currently opened on the Chrome window |
檔案大小 | 195 KB |
安裝次數 | 45 |
目前版本 | 0.1.0 |
更新時間 | 2021-05-17 |
上架時間 | 2021-05-16 |
評分 | 3.00/5 共 2 次評分 |
開發者 | Yrk06 |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | 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" } } |