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.”。
扩展截图
下载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 |
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" ] } ] } |