Twitch Audio Controller
An Audio Controller for all twitch streams currently opened on the Chrome window
Twitch Audio Controllerคืออะไร?
Twitch Audio Controller เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Yrk06 และคุณลักษณะหลักของมันคือ "An Audio Controller for all twitch streams currently opened on the Chrome window"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Twitch Audio Controller
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
URL อย่างเป็นทางการ | 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" } } |