YouTube Chat Room Overlay
Overlay chat room in YouTube when video is playing in Normal mode, Cinema mode or Full screen.
什么是YouTube Chat Room Overlay?
YouTube Chat Room Overlay是由CornerSyrup开发的Chrome扩展程序,该扩展的主要功能是“Overlay chat room in YouTube when video is playing in Normal mode, Cinema mode or Full screen.”。
扩展截图
下载YouTube Chat Room Overlay扩展crx文件
下载YouTube Chat Room Overlay扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Live stream is a daily live entertainment. Sending live chat while watching live streaming is an important interaction to whether the community or the stream host. But it is hard to watch stream in full screen mode and sending chat at the meantime. Here comes the simplest solution. Bring the chat room over the stream and make it transparent.
扩展基本信息
名称 | YouTube Chat Room Overlay |
ID | impmglifagncdmgfjdlcnbdlihgbphbp |
官方URL | https://chromewebstore.google.com/detail/youtube-chat-room-overlay/impmglifagncdmgfjdlcnbdlihgbphbp |
简介 | Overlay chat room in YouTube when video is playing in Normal mode, Cinema mode or Full screen. |
文件大小 | 13.72 KB |
安装次数 | 18 |
当前版本 | 0.3.30.6 |
更新时间 | 2021-08-27 |
上架时间 | 2021-08-26 |
开发者 | CornerSyrup |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/CornerSyrup/YouTube-ChatRoom-Overlay |
帮助页面URL | https://github.com/CornerSyrup/YouTube-ChatRoom-Overlay/issues |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "version": "0.3.30.6", "name": "YouTube Chat Room Overlay", "description": "Overlay chat room in YouTube when video is playing in Normal mode, Cinema mode or Full screen.", "icons": { "16": "assets\/image\/icon16.png", "48": "assets\/image\/icon48.png", "128": "assets\/image\/icon128.png" }, "action": { "default_icon": { "16": "assets\/image\/icon16.png", "24": "assets\/image\/icon24.png", "32": "assets\/image\/icon32.png" }, "default_title": "YT Chat Overlay", "default_popup": "popup.html" }, "content_scripts": [ { "run_at": "document_end", "matches": [ "https:\/\/*.youtube.com\/watch?v=*" ], "js": [ "overlay.js" ], "css": [ "overlay.css" ] } ], "permissions": [ "storage" ] } |