Skip to content

Instantly share code, notes, and snippets.

@bgopikrishna
Created January 1, 2019 05:06
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bgopikrishna/ba23e3e815e9a44246b511f0a75afb78 to your computer and use it in GitHub Desktop.
Save bgopikrishna/ba23e3e815e9a44246b511f0a75afb78 to your computer and use it in GitHub Desktop.
A script to unfollow all topics in Quora at a time
//Wait for the topics to load
//Then execute the script
//Get all following Topics
const topicsFollowing = document.querySelectorAll('.ObjectCard-footer a')
function unFollowAll() {
topicsFollowing.forEach(topic => {
//clicking unFollow button
topic.click()
})
}
unFollowAll()
//Run the script in Console in Developer Tools
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment