Skip to content

Instantly share code, notes, and snippets.

@technoknol
Last active May 8, 2019 12:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save technoknol/0c6eca5396bfe248185ba671f606f09b to your computer and use it in GitHub Desktop.
Save technoknol/0c6eca5396bfe248185ba671f606f09b to your computer and use it in GitHub Desktop.
Send infinite invitations to people in LinkedIn
// Go to my network page
// https://www.linkedin.com/mynetwork/
// run below script in Developer tools/Console.
// It will send connect request to all suggestions.
var t = setInterval(() => { jQuery(document).find('button[data-control-name="invite"]:eq(0)')[0].click(); console.log(jQuery(document).find('button[data-control-name="invite"]:eq(0)').text()) }, 500);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment