Video Chapters for YouTube

Navigate inside YouTube videos using chapters

Video Chapters for YouTube란 무엇입니까?

Video Chapters for YouTube은(는) https://videoken.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Navigate inside YouTube videos using chapters"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Video Chapters for YouTube 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Video Chapters for YouTube provides an easy to use time-stamped summary of all the topics (chapters) discussed inside a video. You can use topic summary to jump to any part of the video. 

Frequently asked questions (FAQ)

👉 How are these topics generated?

There are two ways.
    1) If topics are present in the video description or comments, they are picked from there.
    2) They are generated by our AI algorithms which processes visual and spoken content. More information is here - https://videoken.com

👉 What information do you collect?

We do not collect any personal data or usage information. 

👉 I have a specific feedback for you to consider

We love the feedback provided by our users. Please write to us at [email protected]                    

확장 프로그램 기본 정보

이름 Video Chapters for YouTube Video Chapters for YouTube
ID pfneegfmgamaabfmcokmjkllioiconnp
공식 URL https://chromewebstore.google.com/detail/video-chapters-for-youtub/pfneegfmgamaabfmcokmjkllioiconnp
설명 Navigate inside YouTube videos using chapters
파일 크기 38.58 KB
설치 횟수 1,549
현재 버전 2.2.0
최근 업데이트 2021-10-09
출시 날짜 2020-05-06
평점 4.23/5 총 26 개의 평점
개발자 https://videoken.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://videoken.com/
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Video Chapters for YouTube",
    "description": "Navigate inside YouTube videos using chapters",
    "version": "2.2.0",
    "minimum_chrome_version": "66.0",
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png",
        "256": "icons\/256.png"
    },
    "permissions": [
        "storage"
    ],
    "browser_action": {
        "default_icon": {
            "16": "icons\/16.png",
            "32": "icons\/32.png",
            "48": "icons\/48.png"
        },
        "default_popup": "browser_action.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/youtube.com\/*",
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "js\/inject.js"
            ],
            "css": [
                "css\/inject.css"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "js\/comments.js"
    ]
}