Comments Sidebar for Youtube

Allows you to watch videos and read comments at the same time on Youtube.

Comments Sidebar for Youtube란 무엇입니까?

Comments Sidebar for Youtube은(는) tberghuis에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows you to watch videos and read comments at the same time on Youtube."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Chrome Extension to watch and read comments at the same time on Youtube.

Features a draggable divider to resize the player and the sidebar.

Source code available: https://github.com/tberghuis/watch-and-read-comments-for-youtube                    

확장 프로그램 기본 정보

이름 Comments Sidebar for Youtube Comments Sidebar for Youtube
ID cgijphidahihhjphcfklefeknhemmdgh
공식 URL https://chromewebstore.google.com/detail/comments-sidebar-for-yout/cgijphidahihhjphcfklefeknhemmdgh
설명 Allows you to watch videos and read comments at the same time on Youtube.
파일 크기 42.12 KB
설치 횟수 7,932
현재 버전 0.6.0
최근 업데이트 2023-07-24
출시 날짜 2019-09-24
평점 4.60/5 총 57 개의 평점
개발자 tberghuis
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/tberghuis/watch-and-read-comments-for-youtube
도움말 페이지 URL https://github.com/tberghuis/watch-and-read-comments-for-youtube/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Comments Sidebar for Youtube",
    "version": "0.6.0",
    "manifest_version": 3,
    "description": "Allows you to watch videos and read comments at the same time on Youtube.",
    "icons": {
        "16": "img\/icon.16.png",
        "32": "img\/icon.32.png",
        "48": "img\/icon.48.png",
        "128": "img\/icon.128.png"
    },
    "author": "tberghuis",
    "homepage_url": "https:\/\/github.com\/tberghuis\/watch-and-read-comments-for-youtube",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "run_at": "document_end",
            "css": [
                "content\/vite.css"
            ],
            "js": [
                "content.js",
                "content\/vite.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "inject-vite.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ]
}