Live Chat Overlay

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

Apa itu Live Chat Overlay?

Live Chat Overlay adalah ekstensi Chrome yang dikembangkan oleh Hin Wong, dan fitur utamanya adalah "Overlay live chat on top of the livestream video on YouTube.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Live Chat Overlay

Unduh file ekstensi Live Chat Overlay dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Live Chat Overlay Live Chat Overlay
ID ahaklfidpffmhjhlkgakjgbkppdoaemo
URL Resmi https://chromewebstore.google.com/detail/live-chat-overlay/ahaklfidpffmhjhlkgakjgbkppdoaemo
Deskripsi Overlay live chat on top of the livestream video on YouTube.
Ukuran File 98.39 KB
Jumlah Instalasi 1,059
Versi Saat Ini 2.15.5
Terakhir Diperbarui 2023-10-15
Tanggal Publikasi 2020-06-19
Penilaian 4.60/5 Total 5 Penilaian
Pengembang Hin Wong
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/thwonghin/live-chat-overlay
URL Halaman Bantuan https://github.com/thwonghin/live-chat-overlay/issues
Bahasa yang Didukung 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"
            ]
        }
    ]
}