Skip to content

Instantly share code, notes, and snippets.

@peymanmajidi
Created November 22, 2020 16:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save peymanmajidi/2b2b0047f7b8caefe2fa221c0c77ebb9 to your computer and use it in GitHub Desktop.
Save peymanmajidi/2b2b0047f7b8caefe2fa221c0c77ebb9 to your computer and use it in GitHub Desktop.
Auto Accept LinkedIn Following Request
var x = document.querySelectorAll("[aria-label^='Accept']");
for (var i = 0; i < x.length; i++) {
x[i].click();
}
@peymanmajidi
Copy link
Author

peymanmajidi commented Nov 28, 2020

Go to https://www.linkedin.com/mynetwork/invitation-manager/ in your browser, then hit F12
Paste this piece of code in your browser console
Then all of your connection requests(following) will be accepted :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment