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
const WAIT_OPEN_PLAYLIST_POPUP = 1000; | |
const WAIT_AFTER_ADD_PLAYLIST = 1500; | |
const PLAYLIST_NAME = 'Target'; | |
const listItems = Array.from(document.querySelectorAll('.sc-button-group.sc-button-group-small:first-child')); | |
const addItemToPlaylist = (index) => { | |
const node = listItems[index]; |