How to unfollow everyone on Quora, you ask ?
Use this script I wrote while trying to clean up the mess my quora timeline had become.
How to use the script ?
- Goto the page which shows the list of people you’re following. Something like : https://www.quora.com/profile/your-username/following
- Keep scrolling down, so that the complete list of people you follow is visible on the page.
- Right Click -> Inspect.
- Open Console in the inspect panel.
- Paste the script, wait, start your life over, fresh.
How does the script work ?
Every Un-Follow button on the page looks something like this :
What’s common among all the <a>
tags is that the action_click
attribute is set to UserUnfollow
. So, the script uses jQuery to select the first anchor tag with this attribute and then simply calls the click
method on the tag, imitating a user clicking that unfollow button.
I did not want to bombard quora with super quick requests, lest they block me(?), so this process is repeated every 2000ms.
PS : Releasing under the MIT License, so use it at your own risk ;)
PPS : Happy Quoraing