Youtube Popup Comments

A way to see comments while watching videos, without scrolling away from it

Youtube Popup Comments란 무엇입니까?

Youtube Popup Comments은(는) Armaan Shah에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A way to see comments while watching videos, without scrolling away from it"입니다.

확장 프로그램 스크린샷

screenshot

Youtube Popup Comments 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Ever wanted to read the comments on a YouTube video, without scrolling down to the comments section and missing any of the action?
With this extension, you can.
Simply click on the button added to the top of the YouTube UI (next to the watch later button), and scroll through the comments using the newly created pop-up window that appears on top of your video.
Click on the button again to close the pop-up when you want to focus on your video.                    

확장 프로그램 기본 정보

이름 Youtube Popup Comments Youtube Popup Comments
ID khlcpbakdpgeghfadigjkkmmhdccfmkk
공식 URL https://chromewebstore.google.com/detail/youtube-popup-comments/khlcpbakdpgeghfadigjkkmmhdccfmkk
설명 A way to see comments while watching videos, without scrolling away from it
파일 크기 24.61 KB
설치 횟수 91
현재 버전 1.0
최근 업데이트 2021-08-18
출시 날짜 2021-08-18
평점 5.00/5 총 2 개의 평점
개발자 Armaan Shah
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://raw.githubusercontent.com/DiamondDeadMaw/Youtube-Popup-Comments/main/Privacy%20Policy.txt
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Popup Comments",
    "description": "A way to see comments while watching videos, without scrolling away from it",
    "version": "1.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "scripting"
    ],
    "host_permissions": [
        ""
    ],
    "content_scripts": [
        {
            "css": [
                "popupCommentsStyles.css"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}