Twitch++

Some simple twitch.tv enhancements

Twitch++คืออะไร?

Twitch++ เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Matt Carrick และคุณลักษณะหลักของมันคือ "Some simple twitch.tv enhancements"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Twitch++

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    ]
}