Created
June 18, 2022 03:36
-
-
Save sudarshansb143/3c52399180f36469aa36e9a45220463c to your computer and use it in GitHub Desktop.
Unfollow people on linkedIn in bulk using a hack
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let followingNodeList = document.getElementsByClassName("is-following") | |
| for (ele of followingNodeList) { | |
| ele.click() | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment