This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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)); |