Twitch Theatre Mode For Oled

Hide static elements in theatre mode in Twitch when there are no interaction. Occasionally flip the chat.

Twitch Theatre Mode For Oledคืออะไร?

Twitch Theatre Mode For Oled เป็นส่วนขยายของ Chrome ที่พัฒนาโดย linkthai1995 และคุณลักษณะหลักของมันคือ "Hide static elements in theatre mode in Twitch when there are no interaction. Occasionally flip the chat."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Twitch Theatre Mode For Oled

ดาวน์โหลดไฟล์ส่วนขยาย Twitch Theatre Mode For Oled ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        For OLED screen users, automatically hide static elements and flip chat when watching Twitch Theatre mode.

If you want to support me, buy me a Coffee: https://www.buymeacoffee.com/linkthai                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Twitch Theatre Mode For Oled Twitch Theatre Mode For Oled
ID cbgkdiclimhcgdmidmdmnpfdiflnegpl
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/twitch-theatre-mode-for-o/cbgkdiclimhcgdmidmdmnpfdiflnegpl
คำอธิบาย Hide static elements in theatre mode in Twitch when there are no interaction. Occasionally flip the chat.
ขนาดไฟล์ 10.21 KB
จำนวนการติดตั้ง 345
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2023-06-19
วันที่เผยแพร่ 2022-12-26
คะแนน 5.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา linkthai1995
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Twitch Theatre Mode For Oled",
    "description": "Hide static elements in theatre mode in Twitch when there are no interaction. Occasionally flip the chat.",
    "version": "1.1",
    "action": {
        "default_popup": "popup.html",
        "default_icon": "twitch_oled.png"
    },
    "icons": {
        "16": "twitch_oled.png",
        "32": "twitch_oled.png",
        "48": "twitch_oled.png",
        "128": "twitch_oled.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.twitch.tv\/*"
            ],
            "js": [
                "main.js"
            ],
            "exclude_globs": [
                "https:\/\/www.twitch.tv\/directory\/*",
                "https:\/\/www.twitch.tv\/p\/*",
                "https:\/\/www.twitch.tv\/products\/*",
                "https:\/\/www.twitch.tv\/*\/manager*",
                "https:\/\/www.twitch.tv\/*\/dashboard",
                "https:\/\/www.twitch.tv\/broadcast",
                "https:\/\/www.twitch.tv\/messages\/*",
                "https:\/\/www.twitch.tv\/settings"
            ],
            "run_at": "document_end"
        }
    ]
}