Skip to content

Instantly share code, notes, and snippets.

@egeste
egeste / unfollow-sc.js
Created May 29, 2018 21:55
Unfollow all on soundcloud
// 1. Go to https://soundcloud.com/you/following
// 2. Open javascript console.
// 3. Paste & hit <enter>
const unfollow = function() {
const button = document.querySelector('.sc-button-follow')
button && button.click()
button && setTimeout(unfollow, 0)
}; unfollow();