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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" } } |