Youtube Chapter Progress

Modifies the youtube video page, and places a progress bar under the active chapter, displaying the time remaining in that chapter

Youtube Chapter Progress란 무엇입니까?

Youtube Chapter Progress은(는) DInteractive에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Modifies the youtube video page, and places a progress bar under the active chapter, displaying the time remaining in that chapter"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Youtube Chapter Progress 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Chrome extension that modifies the Youtube video page, and places a progress bar underneath the active chapter in the Chapters list, displaying the time remaining in that chapter. This way you'll be able to visalize not only the progress of the video in general, but also how much time is left in the chapter on its own.

The extension can optionally place a permanent progress bar underneath the main video player that won't disappear when you are not interacting with the video player.

You can customise the visibility of the bars, as well as if you prefer to display the chapter bar only while hovering over the active chapter, by clicking on the extension icon.

Note: None of the added progress bars are interactive, therefore you can't change the video position by clicking on them. They just display the progress of the video and the chapter independently.                    

확장 프로그램 기본 정보

이름 Youtube Chapter Progress Youtube Chapter Progress
ID jjfpbepncodafeimliamngldphkgdmpa
공식 URL https://chromewebstore.google.com/detail/youtube-chapter-progress/jjfpbepncodafeimliamngldphkgdmpa
설명 Modifies the youtube video page, and places a progress bar under the active chapter, displaying the time remaining in that chapter
파일 크기 14.06 KB
설치 횟수 45
현재 버전 1.0.2
최근 업데이트 2023-06-27
출시 날짜 2022-12-20
평점 5.00/5 총 1 개의 평점
개발자 DInteractive
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Youtube Chapter Progress",
    "version": "1.0.2",
    "description": "Modifies the youtube video page, and places a progress bar under the active chapter, displaying the time remaining in that chapter",
    "author": "Diego de Blas Mateo",
    "action": {
        "default_popup": "index.html",
        "default_title": "Youtube Chapter Progress",
        "default_icon": "youtube-chapter-progress-icon-16x16.png"
    },
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "youtube-chapter-progress-icon-16x16.png",
        "48": "youtube-chapter-progress-icon-48x48.png",
        "128": "youtube-chapter-progress-icon-128x128.png"
    },
    "content_scripts": [
        {
            "js": [
                "app.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ]
}