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 là gì?
YouTube Chat Room Overlay là một tiện ích mở rộng Chrome được phát triển bởi CornerSyrup, và tính năng chính của nó là "Overlay chat room in YouTube when video is playing in Normal mode, Cinema mode or Full screen.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng YouTube Chat Room Overlay
Tải xuống các tệp mở rộng YouTube Chat Room 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
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | YouTube Chat Room Overlay |
ID | impmglifagncdmgfjdlcnbdlihgbphbp |
URL Chính Thức | https://chromewebstore.google.com/detail/youtube-chat-room-overlay/impmglifagncdmgfjdlcnbdlihgbphbp |
Mô tả | Overlay chat room in YouTube when video is playing in Normal mode, Cinema mode or Full screen. |
Kích Thước Tệp | 13.72 KB |
Số Lần Cài Đặt | 18 |
Phiên Bản Hiện Tại | 0.3.30.6 |
Cập Nhật Lần Cuối | 2021-08-27 |
Ngày Phát Hành | 2021-08-26 |
Nhà Phát Triển | CornerSyrup |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/CornerSyrup/YouTube-ChatRoom-Overlay |
URL Trang Trợ Giúp | https://github.com/CornerSyrup/YouTube-ChatRoom-Overlay/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |