Skip to content

Instantly share code, notes, and snippets.

@jjisnow
jjisnow / PlaylistLength.js
Last active April 6, 2024 09:34 — forked from Ghost---Shadow/PlaylistLength.js
Calculate the total length of a youtube playlist. Just open javascript console, paste and press enter.
/**
USAGE
1. Open the playlist you want
2. Right click > Inspect element > Console
3. Copy this and paste. Hit enter.
4. For watch later make sure to click the Edit button
*/
var ytp = document.querySelectorAll("ytd-playlist-video-list-renderer > #contents > ytd-playlist-video-renderer");
var time = 0;