Created
May 9, 2018 05:28
-
-
Save bhagatparwinder/8518c1a4f5968657248af5104c9e2f1d to your computer and use it in GitHub Desktop.
Add LinkedIn contacts in My Network
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
// 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