Skip to content

Instantly share code, notes, and snippets.

@varunchandak
Created October 24, 2022 07:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save varunchandak/95b0315ac907b216c978b2b637db67fc to your computer and use it in GitHub Desktop.
Save varunchandak/95b0315ac907b216c978b2b637db67fc to your computer and use it in GitHub Desktop.
LinkedIn Connection Bulk Remover
function stepOne(){
document.querySelector('button.mn-connection-card__dropdown-trigger.artdeco-button--tertiary.artdeco-button--muted.artdeco-button--circle.p1.artdeco-dropdown__trigger.artdeco-dropdown__trigger--placement-bottom.ember-view').click();
window.zorro++;
setTimeout(function () {
document.querySelector('button.display-flex').click();
window.zorro++;
setTimeout(function () {
document.querySelector('button.artdeco-button--primary').click();
window.zorro++;
if(window.zorro % 3 == 0)
setTimeout(function () {
stepOne();
}, 6000);
}, 300);
}, 300);
}
window.zorro = 0;
stepOne();
@varunchandak
Copy link
Author

Thanks to https://stackoverflow.com/a/67523595/2732674.

To use, open https://www.linkedin.com/mynetwork/invite-connect/connections/ in Google Chrome, open Console, copy the code and hit enter.

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