Skip to content

Instantly share code, notes, and snippets.

@Sid3y1
Created August 9, 2016 13:31
Show Gist options
  • Save Sid3y1/901d629abc8320e7ef041f1f177e2775 to your computer and use it in GitHub Desktop.
Save Sid3y1/901d629abc8320e7ef041f1f177e2775 to your computer and use it in GitHub Desktop.
Linkedin : Home page, click on update and connect to everybody
a=function(){
b=document.querySelectorAll('button.connect');
for(var i =0; i < b.length; i++) {
b[i].click();
console.log(b[i]);
}
document.querySelector('span.new-updates').click();
}
c = setInterval(a,10000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment