Skip to content

Instantly share code, notes, and snippets.

@surferxo3
Last active July 26, 2020 12:10
Show Gist options
  • Save surferxo3/c1c07ba3dba6dee9bdd4821eb7bf3fc5 to your computer and use it in GitHub Desktop.
Save surferxo3/c1c07ba3dba6dee9bdd4821eb7bf3fc5 to your computer and use it in GitHub Desktop.
LinkedIn 'People you may know' auto connect script
/*
* just copy and paste the script inside the console and hit enter
* {"status":429} response is returned when api rate limit exceeds
*/
jQuery('button[data-control-name="invite"]').each(function(index, value) {
setTimeout(function() {
jQuery(value).trigger('click');
}, index * 1000);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment