Youtube Comment Viewer

Watch the video with comments on full screen!

Youtube Comment Viewer란 무엇입니까?

Youtube Comment Viewer은(는) tonymkcv93에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Watch the video with comments on full screen!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Youtube Comment Viewer 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Enjoy view comments on all types of screens without scrolling down!!

----
Features

➡️ View comment with all video types (fullscreen, theater, general mode)
➡️ Drag to size the comment window
➡️ Automatically resize the video based on the size of the comment window
➡️ Support Dark mode
➡️ easily Toggle "always turn on/off Comment Viewer"

----
Why youtube comment viewer is needed.

Traditional YouTube requires scrolling down to read comments. This is very cumbersome. 

With 'Youtube Comment Viewer', you can easily display comments on the right side of the video, and the size of the window can also be resized

----
💬Bug reports and inquiries -  [email protected]
----                    

확장 프로그램 기본 정보

이름 Youtube Comment Viewer Youtube Comment Viewer
ID dbkfbnelkejobnjchbcebhhjeaengldp
공식 URL https://chromewebstore.google.com/detail/youtube-comment-viewer/dbkfbnelkejobnjchbcebhhjeaengldp
설명 Watch the video with comments on full screen!
파일 크기 786 KB
설치 횟수 482
현재 버전 1.0.6
최근 업데이트 2023-07-16
출시 날짜 2023-06-07
평점 5.00/5 총 14 개의 평점
개발자 tonymkcv93
이메일 [email protected]
결제 유형 free
지원되는 언어 en,zh-CN,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "1.0.6",
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "background": {
        "service_worker": "scripts\/background.js"
    },
    "web_accessible_resources": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "resources": [
                "scripts\/interact.js"
            ]
        }
    ],
    "content_scripts": [
        {
            "type": "module",
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "scripts\/content-script.js"
            ],
            "css": [
                "styles\/style.css"
            ]
        }
    ],
    "action": {
        "default_icon": "images\/icon.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "images\/icon.png"
    },
    "permissions": [
        "webNavigation",
        "storage"
    ]
}