Live Chat Overlay

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

Live Chat Overlayとは何ですか?

Live Chat OverlayはHin Wongによって開発されたChromeの拡張機能で、その主な機能は「Overlay live chat on top of the livestream video on YouTube.」です。

拡張機能のスクリーンショット

screenshot

Live Chat Overlay拡張機能のCRXファイルをダウンロード

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
Eメール [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"
            ]
        }
    ]
}