Skip to content

Instantly share code, notes, and snippets.

@mshannongit
mshannongit / Youtube - Add liked videos to playlist.js
Created June 21, 2023 10:27
Youtube - Add liked videos to a playlist
// ==UserScript==
// forked from js6pak youtube-playlist-cleanser.user.js script
// @name Youtube - Add liked videos to playlist
const config = {
// Name of playlist to which Liked video will be added
playlistName: 'Music',
// Delay between requests (seems to need to be quite high for consistent results)
delay: 600,
@mshannongit
mshannongit / Youtube - Unlike youtube videos.js
Created June 21, 2023 10:23
Bulk Unlike Youtube videos
// ==UserScript==
// forked from js6pak youtube-playlist-cleanser.user.js script
// @name Youtube - Unlike youtube videos
const config = {
// Delay between requests (seems to need to be quite high for consistent results)
delay: 600,
};
const sleep = (timeout) => new Promise((res) => setTimeout(res, timeout));