YouTube Playlist Duration Calculator
Get total length/duration of YouTube playlist of lectures, tutorials, music videos, etc.
Was ist YouTube Playlist Duration Calculator?
YouTube Playlist Duration Calculator ist eine Chrome-Erweiterung, die von DavidLee entwickelt wurde, und ihr Hauptmerkmal ist "Get total length/duration of YouTube playlist of lectures, tutorials, music videos, etc.".
Erweiterungsscreenshots
YouTube Playlist Duration Calculator-Erweiterungs-CRX-Datei herunterladen
Laden Sie YouTube Playlist Duration Calculator-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Find out the total duration or length of the YouTube Playlist (lectures, tutorials, music, video clips) and see how much you have watched (also displayed as a progress bar). Keep track of the lectures, musics videos, movie clips of playlists you are watching. Works perfectly with huge playlists as well. Hit refresh button when the instruction tells you. Once the time has loaded, there is no need to refresh. Just click on the icon to see the time and progress. When more than 100 videos are in the playlist, scroll down and load more videos to find out full length of the playlist.
Grundlegende Informationen zur Erweiterung
Name | YouTube Playlist Duration Calculator |
ID | hfkcllpkaefjfaiiobanmfkabkncfike |
Offizielle URL | https://chromewebstore.google.com/detail/youtube-playlist-duration/hfkcllpkaefjfaiiobanmfkabkncfike |
Beschreibung | Get total length/duration of YouTube playlist of lectures, tutorials, music videos, etc. |
Dateigröße | 50.04 KB |
Installationsanzahl | 1,365 |
Aktuelle Version | 1.3.0 |
Letztes Update | 2023-01-23 |
Veröffentlichungsdatum | 2021-02-13 |
Bewertung | 3.35/5 Insgesamt 17 Bewertungen |
Entwickler | DavidLee |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Playlist Duration Calculator", "version": "1.3.0", "description": "Get total length\/duration of YouTube playlist of lectures, tutorials, music videos, etc.", "manifest_version": 2, "icons": { "128": ".\/img\/icon128.png", "48": ".\/img\/icon48.png", "16": ".\/img\/icon16.png" }, "browser_action": { "default_icon": ".\/img\/icon16.png", "default_popup": "popup.html" }, "content_scripts": [ { "run_at": "document_start", "matches": [ "https:\/\/www.youtube.com\/playlist?list=*" ], "js": [ ".\/src\/content.js" ] } ] } |