Skip to content

Instantly share code, notes, and snippets.

@bulatie
Created April 20, 2019 15:28
Show Gist options
  • Save bulatie/e57bfad86c5abb459e613732905290ef to your computer and use it in GitHub Desktop.
Save bulatie/e57bfad86c5abb459e613732905290ef to your computer and use it in GitHub Desktop.
unfollow zhihu question
// go to page below and run code
// https://www.zhihu.com/question/following
function unfollow_all(){
var remaining = $(".zg-unfollow").length;
if (remaining > 0) {
$(".zg-unfollow").first().trigger('click');
window.scrollBy(0,100);
setTimeout(unfollow_all, Math.random(0, 1).toFixed(2)*1000 + 500);
}
}
unfollow_all();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment