Skip to content

Instantly share code, notes, and snippets.

@bhagatparwinder
Created May 9, 2018 05:28
Show Gist options
  • Save bhagatparwinder/8518c1a4f5968657248af5104c9e2f1d to your computer and use it in GitHub Desktop.
Save bhagatparwinder/8518c1a4f5968657248af5104c9e2f1d to your computer and use it in GitHub Desktop.
Add LinkedIn contacts in My Network
// Run this in your chrome console to add every recommendation LinkedIn has provided
// Change scroll and timeout to your liking and screen/browser window size
// Keep in mind that this will mass add people to your network. Use it wisely
let scroll = 800;
let timeout = 300;
setInterval (() => {
$(".mn-pymk-list__card:first-child").find(".button-secondary-small").click();
window.scrollTo(0, scroll);
}, timeout);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment