Created
July 12, 2019 15:43
-
-
Save tannerlinsley/91a8935c61314d0612f40a4802e8cc5f to your computer and use it in GitHub Desktop.
A script for removing LinkedIn connections automatically
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
function removeFirstConnection () { | |
$('[type=ellipsis-horizontal-icon]').first().click() | |
setTimeout(() => { | |
$('.js-mn-connection-card__dropdown-delete-btn > button').click() | |
setTimeout(() => { | |
$('[data-control-name="confirm_removed"]').click() | |
}, 250) | |
}, 250) | |
} | |
setInterval(removeFirstConnection, 600) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
this seems outdated. Any luck with an updated version?