Twitch Kino

Extension for integrating streams into Twitch page.

什么是Twitch Kino?

Twitch Kino是由truetripled开发的Chrome扩展程序,该扩展的主要功能是“Extension for integrating streams into Twitch page.”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Twitch Kino扩展crx文件

下载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"
        }
    ]
}