Live Chat Overlay

Overlay live chat on top of the livestream video on YouTube.

Live Chat Overlayคืออะไร?

Live Chat Overlay เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Hin Wong และคุณลักษณะหลักของมันคือ "Overlay live chat on top of the livestream video on YouTube."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Live Chat Overlay

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

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

                        By overlaying the live chat on top of the Youtube livestream, you can enlarge the video stream while still keeping track of the audience's reactions.

Changelog
---
v2.14.0

- Enhanced Customization
  - You now have the ability to adjust the font size. Choose to have the font size change along with the player height, or keep it constant.
  - Configure the maximum number of message lines to be displayed over the player. (Default: 15)
- Significant Performance Enhancements
  - A major rewrite has been carried out on this extension, leading to improved startup time and runtime, making everything more responsive and snappy.                    

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

ชื่อ Live Chat Overlay Live Chat Overlay
ID ahaklfidpffmhjhlkgakjgbkppdoaemo
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/live-chat-overlay/ahaklfidpffmhjhlkgakjgbkppdoaemo
คำอธิบาย Overlay live chat on top of the livestream video on YouTube.
ขนาดไฟล์ 98.39 KB
จำนวนการติดตั้ง 1,059
เวอร์ชันปัจจุบัน 2.15.5
อัปเดตครั้งล่าสุด 2023-10-15
วันที่เผยแพร่ 2020-06-19
คะแนน 4.60/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา Hin Wong
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/thwonghin/live-chat-overlay
URL หน้าช่วยเหลือ https://github.com/thwonghin/live-chat-overlay/issues
ภาษาที่รองรับ en,zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extensionName__",
    "version": "2.15.5",
    "description": "__MSG_extensionDescription__",
    "homepage_url": "https:\/\/github.com\/thwonghin\/live-chat-overlay",
    "manifest_version": 3,
    "minimum_chrome_version": "88",
    "icons": {
        "128": "icon.png"
    },
    "default_locale": "en",
    "permissions": [
        "storage"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "exclude_globs": [
                "https:\/\/www.youtube.com\/live_chat*"
            ],
            "all_frames": true,
            "js": [
                "src\/content-script.js"
            ],
            "css": [
                "style.css"
            ]
        },
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/www.youtube.com\/live_chat*"
            ],
            "all_frames": true,
            "js": [
                "src\/live-chat-content-script.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "resources": [
                "src\/live-chat-fetch-interceptor.js"
            ]
        }
    ]
}