Skip to content

soundcloud - how to mass unfollow and unlike, soundclode unfollower and unliker script

Notifications You must be signed in to change notification settings

frxangelz/sc-unfollower

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

sc-unfollower

This is a just simple soundcloud unfollower and unliker script, nothing fancy, but very helpful for someone who doesnt like to spend lot of times with single click on every soundcloud account followed or liked. Imagine if you have followed or liked thousands of soundcloud accounts. Even if you don’t care about having a tight “follower to following ratio,” this is useful because it helps to unclutter your feed, ensuring that the content you scroll through is all stuff you want to see. This tutorial is to help people who are not familiar with scripting and want to work with it easily.

how to use this extension : https://www.youtube.com/watch?v=9XcFglMxgiw

if you dont want to download and use this extension, you can do it manually with this :

Unfollower Script

var btns = document.querySelectorAll('button.sc-button-follow'); var l; btns.forEach(function(btn){ l = btn.getAttribute('aria-label'); if(l == 'Unfollow') { btn.click(); } });

Unliker Script

var btns = document.querySelectorAll('button.sc-button-like'); var l; btns.forEach(function(btn){ l = btn.getAttribute('aria-label'); if(l == 'Unlike') { btn.click(); } });

copy script and paste it to your chrome developer console, press enter to execute, reload page, repeat until no more followed/liked accounts/tracks.

You should watch video demo on youtube : https://www.youtube.com/watch?v=VFk5HQAwmvQ

mychannel : https://www.youtube.com/channel/UCqRqvw9n7Lrh79x3dRDOkDg

About

soundcloud - how to mass unfollow and unlike, soundclode unfollower and unliker script

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published