Skip to content

Instantly share code, notes, and snippets.

View AgentRev's full-sized avatar

Agent Revolution AgentRev

  • Canada
View GitHub Profile
@AgentRev
AgentRev / soundCloudPlaylist.js
Last active July 29, 2018 05:51 — forked from Thomasvdam/soundCloudPlaylist.js
Copy SoundCloud playlist items from one to another, and add user tracks to playlist
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];