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
官方網址 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"
    ]
}