Skip to content

Instantly share code, notes, and snippets.

@bhavaniravi
Created June 28, 2020 10:46
Show Gist options
  • Save bhavaniravi/dcb26268c5f583e4903805a7a33be6c3 to your computer and use it in GitHub Desktop.
Save bhavaniravi/dcb26268c5f583e4903805a7a33be6c3 to your computer and use it in GitHub Desktop.
A Script to unfollow Linkedin followers
// Linkedin Unfortunately follows every collection, once in a while I use this script to clean it up
a = document.getElementsByClassName("follows-recommendation-card__follow-btn")
b = Array.from(a)
b.forEach((x) => {
x.click()
})
@tomeytran
Copy link

it does not work, or is that I go to wrong address? (linkedin.com/mynetwork/network-manager/people-follow/followers/)

@bhavaniravi
Copy link
Author

The script is super old. 3 years. Pretty sure, LinkedIn has changed things since

@tomeytran
Copy link

Ah I see, thanks for answering.
I just found another extension that work for me: https://chromewebstore.google.com/detail/linkedin-unfollower/bimbbojapfpbbigjdpcdeiaiblhgndge

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment