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」です。
拡張機能のスクリーンショット
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 |
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 |
Eメール | [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\/*" ] } ] } |