Skip to content

Instantly share code, notes, and snippets.

@sudarshansb143
Created June 18, 2022 03:36
Show Gist options
  • Select an option

  • Save sudarshansb143/3c52399180f36469aa36e9a45220463c to your computer and use it in GitHub Desktop.

Select an option

Save sudarshansb143/3c52399180f36469aa36e9a45220463c to your computer and use it in GitHub Desktop.
Unfollow people on linkedIn in bulk using a hack
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