Twitch Muter
Only plays audio of active twitch tab
ما هو Twitch Muter؟
Twitch Muter هو إضافة Chrome تم تطويرها بواسطة Meeoh، والميزة الرئيسية لها هي "Only plays audio of active twitch tab".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Twitch Muter
قم بتنزيل ملفات الامتداد Twitch Muter بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Mutes inactive twitch tabs! If you ever have multiple twitch streams open at once in different tabs, but only want the active tab to have audio playing, just activate the extension via the icon in the top right, and voila! ***IMPORTANT*** With all your twitch tabs open, activate the extension and they'll all become muted, now whenever you switch tabs to a twitch stream, its audio will be activated. Report issues here: https://github.com/meeoh/TwitchMuter/issues View changelog here: https://github.com/meeoh/TwitchMuter/wiki/Chrome-Extension-Change-Log
معلومات أساسية عن التمديد
الاسم | Twitch Muter |
ID | gcikmdppgicmifbcngddbhcfmnecnejf |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/twitch-muter/gcikmdppgicmifbcngddbhcfmnecnejf |
الوصف | Only plays audio of active twitch tab |
حجم الملف | 82.98 KB |
عدد التثبيتات | 64 |
النسخة الحالية | 1.3 |
آخر تحديث | 2016-10-19 |
تاريخ النشر | 2016-10-19 |
تقييم | 5.00/5 مجموع تقييمات 4 |
المطور | Meeoh |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
عنوان صفحة المساعدة | https://github.com/meeoh/TwitchMuter |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Twitch Muter", "description": "Only plays audio of active twitch tab", "version": "1.3", "permissions": [ "activeTab", "http:\/\/*\/", "https:\/\/*\/" ], "background": { "scripts": [ "jquery-3.1.1.js", "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/www.twitch.tv\/*" ], "js": [ "jquery-3.1.1.js", "content_script.js" ] } ], "browser_action": { "default_title": "Toggle", "default_icon": "volumeOff.png" }, "manifest_version": 2 } |