In this tutorial i will show how to unfollow all on soundcloud.First step, Go to https://soundcloud.com and click on profile .Now click on follow. const unfollow = function() { const button = document.querySelector('.sc-button-follow') button && button.click() button && setTimeout(unfollow, 0) }; unfollow(); Now hit enter and you will see all followed pages will be unfollow. |