Skip to content

AmanRaj1608/Accept-multiple-request-at-once

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Accept multiple requests at once

I recently wanted to follow everyone whom my friends follow. But it was quite boring to go through the list and click on the Follow button. So I decided to do something like this.

Follow multiple GitHub users at once

  • Go to Inspect in your browser
  • Go to the Followers page
  • Run this command on console
var temp = document.getElementsByClassName('btn-sm');
for(let i = 0; i<temp.length; i+=2) {
    temp[i].click();
}

GitHub Follow

Accepting multiple connections on LinkedIn

  • Go to Inspect in your browser
  • Go to the My Network page
  • Run this command on console
var temp = document.getElementsByClassName('artdeco-button--secondary');
for(let i = 0; i<temp.length; i++) {
    temp[i].click();
}

LinkedIn Connections

Thanks for reading 😄

Author

Aman Raj

About

Follow multiple GitHub users or Accept multiple connections using JavaScript

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published