YouTube Timed Comments

Show comments with timestamps

YouTube Timed Comments란 무엇입니까?

YouTube Timed Comments은(는) lerxst에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Show comments with timestamps"입니다.

확장 프로그램 스크린샷

screenshot

YouTube Timed Comments 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        See comments that have timestamps, show up at the appropriate time.

Note: Only comments that have loaded on the page will show up.                    

확장 프로그램 기본 정보

이름 YouTube Timed Comments YouTube Timed Comments
ID mfmjnhncafdcdegeiamnjpnjgmmkkaal
공식 URL https://chrome.google.com/webstore/detail/youtube-timed-comments/mfmjnhncafdcdegeiamnjpnjgmmkkaal
설명 Show comments with timestamps
파일 크기 96.02 KB
설치 횟수 159
현재 버전 0.0.0.1
최근 업데이트 2019-09-03
출시 날짜 2019-09-03
평점 3.33/5 총 3 개의 평점
개발자 lerxst
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Timed Comments",
    "description": "Show comments with timestamps",
    "version": "0.0.0.1",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "third-party-scripts\/jquery-3.3.1.js",
                "third-party-scripts\/arrive.min.js",
                "third-party-scripts\/clamp.min.js",
                "content-script.js"
            ]
        }
    ],
    "permissions": [
        "contextMenus",
        "webNavigation",
        "tabs"
    ],
    "background": {
        "scripts": [
            "event-page.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "third-party-scripts\/jquery-3.3.1.js",
        "third-party-scripts\/mustache.min.js",
        "third-party-scripts\/arrive.min.js",
        "third-party-scripts\/clamp.min.js",
        "page-script.js"
    ],
    "icons": {
        "16": "icons\/icon-16.png",
        "32": "icons\/icon-32.png",
        "192": "icons\/icon-192.png"
    }
}