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은(는) linkthai1995에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Hide static elements in theatre mode in Twitch when there are no interaction. Occasionally flip the chat."입니다.

확장 프로그램 스크린샷

screenshot

Twitch Theatre Mode For Oled 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
        }
    ]
}