Twitch++

Some simple twitch.tv enhancements

What is Twitch++?

Twitch++ is a Chrome extension developed by Matt Carrick, and its main feature is "Some simple twitch.tv enhancements".

Extension Screenshots

screenshot
screenshot

Download Twitch++ Extension CRX File

Download Twitch++ extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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)                    

Extension Basic Information

Name Twitch++ Twitch++
ID lpgmnkfdelbjjbmdodlonnldlagofkbd
Official URL https://chromewebstore.google.com/detail/twitch++/lpgmnkfdelbjjbmdodlonnldlagofkbd
Description Some simple twitch.tv enhancements
File Size 40 KB
Installation Count 123
Current Version 0.3
Last Updated 2018-11-20
Publish Date 2018-11-20
Developer Matt Carrick
Payment Type free
Extension Website https://rokco.org
Supported Languages 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"
    ]
}