Twitch Kino

Extension for integrating streams into Twitch page.

Что такое Twitch Kino?

Twitch Kino - это расширение Chrome, разработанное truetripled, и его основная функция - "Extension for integrating streams into Twitch page.".

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        This extension allows you to watch streams from several streaming platforms while staying on Twitch. Open Twitch stream page, open extension popup, type in nickname of streamer from WASD or GoodGame and click 'Change player', so extension will replace Twitch player with desired one.

Important! This extension only works on Twitch stream page, e.g. https://twitch.tv/forsen.                    

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

Название Twitch Kino Twitch Kino
ID dnighmaokjmhadecckimjodpbaoehbfm
Официальный URL https://chromewebstore.google.com/detail/twitch-kino/dnighmaokjmhadecckimjodpbaoehbfm
Описание Extension for integrating streams into Twitch page.
Размер файла 316 KB
Количество установок 24
Текущая Версия 1.0.3
Последнее Обновление 2022-06-21
Дата публикации 2022-05-25
Рейтинг 5.00/5 Всего 5 оценок
Разработчик truetripled
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitch Kino",
    "version": "1.0.3",
    "description": "Extension for integrating streams into Twitch page.",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "icons\/peepoGlad16.png",
        "32": "icons\/peepoGlad32.png",
        "48": "icons\/peepoGlad48.png",
        "128": "icons\/peepoGlad128.png"
    },
    "action": {
        "default_icon": "icons\/peepoGlad128.png",
        "default_popup": "index.html",
        "default_title": "Twitch Kino"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitch.tv\/*"
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true,
            "runAt": "document_start"
        }
    ]
}