Twitch Multi Stream Auto-Mute

Automatically mutes Twitch streams you have open but are not watching. Very handy when following several streams at once.

Что такое Twitch Multi Stream Auto-Mute?

Twitch Multi Stream Auto-Mute - это расширение Chrome, разработанное Mickaël Allonneau, и его основная функция - "Automatically mutes Twitch streams you have open but are not watching. Very handy when following several streams at once.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Twitch Multi Stream Auto-Mute

Скачайте файлы расширений Twitch Multi Stream Auto-Mute в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        This extension allows you to follow multiple Twitch streams at once without hearing the sound of all open streams, but only the one you're currently watching.

Every time you switch tab to another Twitch stream, the one you leave is automatically muted and the one you start watching is automatically unmuted. So whether you have 1, 2 or 10 streams open in 10 different tabs, you'll only ever hear the sound of the one you're currently on.                    

Основная информация о расширении

Название Twitch Multi Stream Auto-Mute Twitch Multi Stream Auto-Mute
ID dnjockganjfnlkfengbekkkbplpfpold
Официальный URL https://chromewebstore.google.com/detail/twitch-multi-stream-auto/dnjockganjfnlkfengbekkkbplpfpold
Описание Automatically mutes Twitch streams you have open but are not watching. Very handy when following several streams at once.
Размер файла 5.83 KB
Количество установок 171
Текущая Версия 1.1.1
Последнее Обновление 2023-09-01
Дата публикации 2021-05-08
Рейтинг 4.67/5 Всего 3 оценок
Разработчик Mickaël Allonneau
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/flawyte/twitch-multi-stream-auto-mute
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Twitch Multi Stream Auto-Mute",
    "version": "1.1.1",
    "description": "Automatically mutes Twitch streams you have open but are not watching. Very handy when following several streams at once.",
    "icons": {
        "128": "icon\/128.png"
    },
    "background": {
        "scripts": [
            "background-script.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.twitch.tv\/*"
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "permissions": [
        "tabs"
    ]
}