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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } |