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