Live Chat Overlay

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

Live Chat Overlay là gì?

Live Chat Overlay là một tiện ích mở rộng Chrome được phát triển bởi Hin Wong, và tính năng chính của nó là "Overlay live chat on top of the livestream video on YouTube.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Live Chat Overlay

Tải xuống các tệp mở rộng Live Chat Overlay dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Live Chat Overlay Live Chat Overlay
ID ahaklfidpffmhjhlkgakjgbkppdoaemo
URL Chính Thức https://chromewebstore.google.com/detail/live-chat-overlay/ahaklfidpffmhjhlkgakjgbkppdoaemo
Mô tả Overlay live chat on top of the livestream video on YouTube.
Kích Thước Tệp 98.39 KB
Số Lần Cài Đặt 1,059
Phiên Bản Hiện Tại 2.15.5
Cập Nhật Lần Cuối 2023-10-15
Ngày Phát Hành 2020-06-19
Đánh Giá 4.60/5 Tổng số 5 Đánh Giá
Nhà Phát Triển Hin Wong
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/thwonghin/live-chat-overlay
URL Trang Trợ Giúp https://github.com/thwonghin/live-chat-overlay/issues
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}