Twitch Audio Suppressor

Automatically mutes all active Twitch tabs except the one in focus.

ما هو Twitch Audio Suppressor؟

Twitch Audio Suppressor هو إضافة Chrome تم تطويرها بواسطة Swampfox، والميزة الرئيسية لها هي "Automatically mutes all active Twitch tabs except the one in focus.".

لقطات شاشة التمديد

تحميل ملف CRX للإضافة Twitch Audio Suppressor

قم بتنزيل ملفات الامتداد Twitch Audio Suppressor بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Simple extension that listens for tabs playing audio from Twitch and only allows the active tab within the active window to play, muting all others.  I use it all the time when switching between multiple streams.                    

معلومات أساسية عن التمديد

الاسم Twitch Audio Suppressor Twitch Audio Suppressor
ID bkjppbhjfbafpamcciabdjkemkbkhcjb
عنوان URL الرسمي https://chromewebstore.google.com/detail/twitch-audio-suppressor/bkjppbhjfbafpamcciabdjkemkbkhcjb
الوصف Automatically mutes all active Twitch tabs except the one in focus.
حجم الملف 35.77 KB
عدد التثبيتات 75
النسخة الحالية 1.1
آخر تحديث 2020-09-15
تاريخ النشر 2020-04-22
المطور Swampfox
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Twitch Audio Suppressor",
    "description": "Automatically mutes all active Twitch tabs except the one in focus.",
    "version": "1.1",
    "icons": {
        "128": "icon3_128.png",
        "48": "icon3_48.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.twitch.tv\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "content.js",
                "avatarFetcher.js",
                "menu.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "*:\/\/twitch.tv\/*",
        "activeTab",
        "*:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    }
}