yttwthmode

Twitch-like theater mode for Youtube livestreams and archives.

Что такое yttwthmode?

yttwthmode - это расширение Chrome, разработанное maquinas, и его основная функция - "Twitch-like theater mode for Youtube livestreams and archives.".

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

screenshot

Скачать файл CRX расширения yttwthmode

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

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

                        Changes Youtube's theater mode to emulate Twitch's. Video is displayed in the whole window with the chat on the right and goes to the bottom when the screen shrinks to half size.

Source available at https://github.com/maquinas07/yttwthmode/                    

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

Название yttwthmode yttwthmode
ID ahnanfplkklemnpbjcgheicpcnodmjji
Официальный URL https://chromewebstore.google.com/detail/yttwthmode/ahnanfplkklemnpbjcgheicpcnodmjji
Описание Twitch-like theater mode for Youtube livestreams and archives.
Размер файла 44.22 KB
Количество установок 140
Текущая Версия 1.3.10
Последнее Обновление 2024-01-14
Дата публикации 2021-03-09
Рейтинг 3.86/5 Всего 7 оценок
Разработчик maquinas
Электронная почта [email protected]
Тип оплаты free
URL страницы помощи https://github.com/maquinas07/yttwthmode
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "yttwthmode",
    "version": "1.3.10",
    "description": "Twitch-like theater mode for Youtube livestreams and archives.",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "dist\/content-script.js"
            ]
        }
    ],
    "action": {
        "default_popup": "dist\/popup\/popup.html",
        "default_icon": {
            "128": "dist\/img\/logo_128.png"
        }
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "icons": {
        "128": "dist\/img\/logo_128.png"
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "{ec1cc669-f6b7-4455-b288-bca14f840bf2}"
        }
    }
}