Enable Chapters for Youtube

This will enable the Chapters feature for Youtube.

Enable Chapters for Youtube란 무엇입니까?

Enable Chapters for Youtube은(는) Robin van Nunen에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This will enable the Chapters feature for Youtube."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Enable Chapters for Youtube 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        The extension searches for chapter definitions in the video description or in the comment section and shows them in the video timeline. It works with any video and is very useful for i.e.: music sets and podcasts.

Example chapter definition:
00:00 - Intro
[02:00] Topic 1
(02:00) Topic 2
Topic 3 - 03:00                    

확장 프로그램 기본 정보

이름 Enable Chapters for Youtube Enable Chapters for Youtube
ID mmkmlfcfdmdccmddalhcdfappcdhmbgg
공식 URL https://chrome.google.com/webstore/detail/enable-chapters-for-youtu/mmkmlfcfdmdccmddalhcdfappcdhmbgg
설명 This will enable the Chapters feature for Youtube.
파일 크기 18.49 KB
설치 횟수 33
현재 버전 1.0.0
최근 업데이트 2020-06-22
출시 날짜 2020-06-22
평점 5.00/5 총 1 개의 평점
개발자 Robin van Nunen
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Enable Chapters for Youtube",
    "version": "1.0.0",
    "author": "Robin van Nunen",
    "description": "This will enable the Chapters feature for Youtube.",
    "icons": {
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "inject.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "content.js"
    ]
}