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은(는) alvistseio에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A chrome extension creates an overlay to show Youtube live chat when in full screen"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Youtube Chat in Fullscreen 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        If you have any problem and feature request, join the discord server https://discord.gg/RJGpyC98Ss

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 + Shift + y to toggle overlay


Update logs

v2.0.4 (2-Apr-2022)
- Fixed conflict with Enhancer for YouTube™

v2.0.3 (28-Sept-2021)
-   Fixed Live Member Chat message

v2.0.2 (26-Aug-2021)
- Fixed bug make app crashed by message emoji

v2.0.1 (2-May-2021)
- Auto hide toolbar

v2.0 (26-April-2021)
- New Overlay UI
  - Much intuitive resizing method
  - Do not have annoying toolbar to block the content
- Chat filter for each video page
- Added Super Sticker Support
- Fixed shortcut issue by change shortcut to ctrl+shift+y                    

확장 프로그램 기본 정보

이름 Youtube Chat in Fullscreen Youtube Chat in Fullscreen
ID kmhclnjhlejdjlkgeebolkigafpaijkp
공식 URL https://chromewebstore.google.com/detail/youtube-chat-in-fullscree/kmhclnjhlejdjlkgeebolkigafpaijkp
설명 A chrome extension creates an overlay to show Youtube live chat when in full screen
파일 크기 233 KB
설치 횟수 132,128
현재 버전 2.0.4
최근 업데이트 2022-04-02
출시 날짜 2020-09-28
평점 4.37/5 총 183 개의 평점
개발자 alvistseio
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Shad02w/Youtube-Chat-in-Fullscreen
도움말 페이지 URL https://github.com/Shad02w/Youtube-Chat-in-Fullscreen/issues
지원되는 언어 en-US
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": "2.0.4",
    "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",
        "css\/NativeChatFilter.css"
    ]
}