Youtube Chat in Fullscreen
A chrome extension creates an overlay to show Youtube live chat when in full screen
Youtube Chat in Fullscreen란 무엇입니까?
Youtube Chat in Fullscreen은(는) neranyapi에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A chrome extension creates an overlay to show Youtube live chat when in full screen"입니다.
확장 프로그램 스크린샷
Youtube Chat in Fullscreen 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
A chrome extension creates an overlay to show Youtube live chat when in full screen Key features - Show a live chat overlay when you are watching Youtube live stream in full screen - Also support video pages with chat replay - You can adjust position, opacity, size, and font size of overlay as you wish Usages - Use Ctrl + Alt + c to toggle overlay - Press and hold Ctrl + Alt, then drag to move the position of overlay Update logs v.1.0.0.13 (26-Jan-2021) - Native chat in beta - Verified user is highlight as the same as owner - Fixed the color of member name
확장 프로그램 기본 정보
이름 | |
ID | falbnmmgibpljgmgpmmckflkblfeaiim |
공식 URL | https://chrome.google.com/webstore/detail/youtube-chat-in-fullscree/falbnmmgibpljgmgpmmckflkblfeaiim |
설명 | A chrome extension creates an overlay to show Youtube live chat when in full screen |
파일 크기 | 229 KB |
설치 횟수 | 193 |
현재 버전 | 1.0.0.14 |
최근 업데이트 | 2021-04-03 |
출시 날짜 | 2021-04-03 |
개발자 | neranyapi |
이메일 | [email protected] |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | https://docs.google.com/document/d/19ZzedyqQ4abdzpQeUZD1bwX0l2jXmepslR2b8WkcI0o |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Youtube Chat in Fullscreen", "description": "A chrome extension creates an overlay to show Youtube live chat when in full screen", "version": "1.0.0.14", "manifest_version": 2, "background": { "scripts": [ "background.js" ], "persistent": true }, "browser_action": { "default_popup": "popup.html", "default_icon": ".\/icons\/chat128.png" }, "icons": { "16": ".\/icons\/chat16.png", "48": ".\/icons\/chat48.png", "128": ".\/icons\/chat128.png" }, "permissions": [ "storage", "activeTab", "webRequest", "*:\/\/*.youtube.com\/" ], "content_security_policy": "script-src 'self' https:\/\/apis.google.com; object-src 'self'", "web_accessible_resources": [ "pageInject.js" ] } |