Last active
July 26, 2020 12:10
-
-
Save surferxo3/c1c07ba3dba6dee9bdd4821eb7bf3fc5 to your computer and use it in GitHub Desktop.
LinkedIn 'People you may know' auto connect script
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* 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