YouTube Livestreams Theater Mode

Improves the viewing experience of YouTube livestreams with an enhanced theater mode.

YouTube Livestreams Theater Modeคืออะไร?

YouTube Livestreams Theater Mode เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://napalighost.com และคุณลักษณะหลักของมันคือ "Improves the viewing experience of YouTube livestreams with an enhanced theater mode."

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

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube Livestreams Theater Mode

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

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

                        Theater mode features:
- display chat next to the video
- move chat to the left side
- show chat on top of the video
- hide or popout chat
- display livestream information (title, view count, description, ...) without leaving theater mode

Theater mode options:
- force dark theme in theater mode
- show YouTube header while in livestreams theater mode
- chat width (next to video)
- chat width (over video)
- chat over video margin top & bottom
- display livestream information on hover over the video / info-icon
- overlay and chat over video background opacity
- show overlay text shadows
- default chat side and mode
- automatically enter livestreams theater mode (live & replay)
- shortcut to toggle livestreams theater mode

Chat customization options:
- default chat (top chat / live chat)
- colored usernames
- hide profile pictures
- hide live reactions
- super chat currency converter: adds the converted currency under / next to the original currency, shows the name of the original currency on hover.

Other features:
- display obvious hint when the video is behind on a livestream

Permissions:
- storage permission is needed to save settings
- optional host permission for 'napalighost.com' is needed when super chat currency converter is turned on

Other browsers:
- available as a Firefox add-on: https://addons.mozilla.org/en/firefox/addon/youtubelivestreamstheatermode/                    

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

ชื่อ YouTube Livestreams Theater Mode YouTube Livestreams Theater Mode
ID cmjhejfkhdonjimgkinjdombabgfbcal
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/youtube-livestreams-theat/cmjhejfkhdonjimgkinjdombabgfbcal
คำอธิบาย Improves the viewing experience of YouTube livestreams with an enhanced theater mode.
ขนาดไฟล์ 42.35 KB
จำนวนการติดตั้ง 30,379
เวอร์ชันปัจจุบัน 4.1.1
อัปเดตครั้งล่าสุด 2024-03-02
วันที่เผยแพร่ 2020-11-04
คะแนน 4.73/5 รวมทั้งหมด 190 คะแนน
ผู้พัฒนา https://napalighost.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.napalighost.com/youtube-livestreams-theater-mode
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "YouTube Livestreams Theater Mode",
    "version": "4.1.1",
    "description": "Improves the viewing experience of YouTube livestreams with an enhanced theater mode.",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "run_at": "document_idle",
            "css": [
                "YouTube\/Style.css"
            ],
            "js": [
                "YouTube\/Overlay.js",
                "YouTube\/InfoIcon.js",
                "YouTube\/Settings.js",
                "YouTube\/ChatIframe.js",
                "YouTube\/Video.js",
                "YouTube\/TheaterMode.js",
                "YouTube\/YouTube.js",
                "YouTube\/Init.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.youtube.com\/live_chat*",
                "https:\/\/*.youtube.com\/live_chat_replay*"
            ],
            "run_at": "document_idle",
            "css": [
                "Chat\/TheaterMode.css",
                "Chat\/ChatOverVideo.css",
                "Chat\/UsernameColors.css",
                "Chat\/HideProfilePicture.css",
                "Chat\/HideLiveReactions.css",
                "Chat\/SuperchatCurrencyConverter.css"
            ],
            "js": [
                "Chat\/Chat.js",
                "Chat\/ChatSettings.js",
                "Chat\/SuperchatCurrencyConverter.js",
                "Chat\/Init.js"
            ],
            "all_frames": true
        }
    ],
    "background": {
        "service_worker": "Background\/Background.js"
    },
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "action": {
        "default_popup": "Popup\/Popup.html"
    },
    "options_ui": {
        "page": "Options\/Options.html",
        "open_in_tab": true,
        "browser_style": true
    },
    "permissions": [
        "storage"
    ],
    "optional_host_permissions": [
        "https:\/\/*.napalighost.com\/*"
    ]
}