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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Modifies the youtube video page, and places a progress bar under the active chapter, displaying the time remaining in that chapter"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Youtube Chapter Progress एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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\/*" ] } ] } |