Comment Overlay

Read comments and watch Youtube videos at the same time.

Comment Overlay란 무엇입니까?

Comment Overlay은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Read comments and watch Youtube videos at the same time."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Comment Overlay allows you to read comments while watching YouTube videos. Comments are shown as an overlay on top the video. You can show/hide comments by clicking the extension button.

Version 1.2
- Dark Mode added.

Version 1.1:
- Theater mode is now supported.

Version 1.0:
- Original release.                    

확장 프로그램 기본 정보

이름 Comment Overlay Comment Overlay
ID mjkhjmibjakfenpldlgjogpiebkjliec
공식 URL https://chromewebstore.google.com/detail/comment-overlay/mjkhjmibjakfenpldlgjogpiebkjliec
설명 Read comments and watch Youtube videos at the same time.
파일 크기 53.86 KB
설치 횟수 251
현재 버전 1.2
최근 업데이트 2018-11-21
출시 날짜 2018-11-20
평점 3.83/5 총 6 개의 평점
개발자 Unknown
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Comment Overlay",
    "version": "1.2",
    "web_accessible_resources": [
        "mypage.htm"
    ],
    "description": "Read comments and watch Youtube videos at the same time.",
    "permissions": [
        "activeTab",
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "exclude_globs": [],
            "include_globs": [
                "https:\/\/www.youtube.com\/watch*?v=*",
                "https:\/\/www.youtube.com\/"
            ],
            "js": [
                "jquery-3.3.1.min.js",
                "content.js",
                "popup.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/watch*",
                "https:\/\/www.youtube.com\/"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Comment Overlay",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "manifest_version": 2
}