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文件

下載Youtube Chapter Progress擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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\/*"
            ]
        }
    ]
}