Twitch++

Some simple twitch.tv enhancements

什么是Twitch++?

Twitch++是由Matt Carrick开发的Chrome扩展程序,该扩展的主要功能是“Some simple twitch.tv enhancements”。

扩展截图

screenshot
screenshot

下载Twitch++扩展crx文件

下载Twitch++扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This extension adds a few enhancements to Twitch.tv that I want, namely -
- Fully hides extensions, and their controls
- Auto theater mode
- Mute the stream when the cursor leaves the window (good for when you are watching multiple streams)                    

扩展基本信息

名称 Twitch++ Twitch++
ID lpgmnkfdelbjjbmdodlonnldlagofkbd
官方URL https://chromewebstore.google.com/detail/twitch++/lpgmnkfdelbjjbmdodlonnldlagofkbd
简介 Some simple twitch.tv enhancements
文件大小 40 KB
安装次数 123
当前版本 0.3
更新时间 2018-11-20
上架时间 2018-11-20
开发者 Matt Carrick
付费类型 free
扩展官网 https://rokco.org
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "jquery.min.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon_48.png",
        "default_popup": "popup.html",
        "default_title": "settings"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "jquery.min.js",
                "script.js"
            ],
            "matches": [
                "*:\/\/*.twitch.tv\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "description": "Some simple twitch.tv enhancements",
    "icons": {
        "128": "icon_128.png",
        "16": "icon_16.png",
        "48": "icon_48.png"
    },
    "manifest_version": 2,
    "minimum_chrome_version": "37",
    "name": "Twitch++",
    "options_page": "options.html",
    "permissions": [
        "storage"
    ],
    "version": "0.3",
    "web_accessible_resources": [
        "index.html"
    ]
}