Skip to content

Instantly share code, notes, and snippets.

@foolmoron
Last active August 5, 2016 20:01
Show Gist options
  • Save foolmoron/b3a25ef22be6bab780aa6b3505dbcbb2 to your computer and use it in GitHub Desktop.
Save foolmoron/b3a25ef22be6bab780aa6b3505dbcbb2 to your computer and use it in GitHub Desktop.
Auto skip certain songs on Soundcloud by title
function autoSkip(songName) {
setInterval(() => {
if (document.querySelector('.sound.playing .soundTitle__title').innerText.toLowerCase().indexOf(songName.toLowerCase()) >= 0) {
document.querySelector('.skipControl__next').click();
}
}, 500);
}
autoSkip('Cold Water'); // seriously plz stop remixing this
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment