Skip to content

Instantly share code, notes, and snippets.

View zi3dAouidene's full-sized avatar

Zied AOUIDENE zi3dAouidene

View GitHub Profile
@spyesx
spyesx / youtube_watch_later.js
Last active June 16, 2024 13:38
Get URLs of your youtube watch later playlist
// Execute this in the console of on your own playlist
var videos = document.querySelectorAll('.yt-simple-endpoint.style-scope.ytd-playlist-video-renderer');
var r = [];
var json = [];
r.forEach.call(videos, function(video) {
var url = 'https://www.youtube.com' + video.getAttribute('href');
url = url.split('&list=WL&index=');
url = url[0];