Last active
December 30, 2016 14:57
-
-
Save benmarks/b2159213116a236fd1267aa69dabc39f to your computer and use it in GitHub Desktop.
Bulk accept LinkedIn invites
This file contains hidden or 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
// Bulk accept LinkedIn invites - good as of 30 Dec 2016 | |
// Visit https://www.linkedin.com/people/pymk/hub?ref=global-nav&trk=nav_utilities_invites_header | |
var acceptButtons = document.getElementsByClassName("bt-invite-accept"); | |
for (var i = acceptButtons.length - 1, acceptButton; acceptButton = acceptButtons[i]; i--) { | |
acceptButton.click(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment