Skip to content

Instantly share code, notes, and snippets.

@wvv8oo
Last active September 10, 2019 12:39
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save wvv8oo/b4cd13f483f58693fd86 to your computer and use it in GitHub Desktop.
Save wvv8oo/b4cd13f483f58693fd86 to your computer and use it in GitHub Desktop.
批量复制某个用户的所有star
var $buttons = $('button.star-button')
var index = 0
var timer = window.setInterval(function(){
if(index >= $buttons.length){
window.clearInterval(timer);
}else{
$buttons[index++].click();
}
}, 1000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment