Skip to content

Instantly share code, notes, and snippets.

@thanhcs94
Last active May 20, 2018 11:18
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 thanhcs94/59f48ea7d184862f321cf218dc7567c1 to your computer and use it in GitHub Desktop.
Save thanhcs94/59f48ea7d184862f321cf218dc7567c1 to your computer and use it in GitHub Desktop.
Simplest LinkedIn Automation Inviter
//Simple version
setInterval(() => {
$('button[data-control-name="invite"]').each((i, el) => el.click())
window.scrollTo(0, document.body.scrollHeight)
window.scrollTo(document.body.scrollHeight, 0)
window.scrollTo(0, document.body.scrollHeight)
}, 5e3)
//run it on https://www.linkedin.com/mynetwork/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment