Skip to content

Instantly share code, notes, and snippets.

@brianboyer
Created June 6, 2012 16:20
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 brianboyer/2883018 to your computer and use it in GitHub Desktop.
Save brianboyer/2883018 to your computer and use it in GitHub Desktop.
Batch remove connections from linkedin
// visit the remove connections page
// http://www.linkedin.com/connections?displayBreakConnections=&goback=%2Econ
//pull up your javascript console
// load jQuery
(function(){
var newscript = document.createElement('script');
newscript.type = 'text/javascript';
newscript.async = true;
newscript.src = 'https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js';
(document.getElementsByTagName('head')[0]||document.getElementsByTagName('body')[0]).appendChild(newscript);
})();
// check a bunch of your connections
// (there seems to be an upper limit, so we slice the array down)
$("div.pickme label").slice(0,100).click()
// wish i could automate this further, but trying to auto submit the form doesnt work
// and i dont have *that* many contacts
@sghinescu
Copy link

Would need this, is it updated?
Doesn't seem possible to select multiple contacts.

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