Created
June 6, 2012 16:20
-
-
Save brianboyer/2883018 to your computer and use it in GitHub Desktop.
Batch remove connections from linkedin
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
// 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Would need this, is it updated?
Doesn't seem possible to select multiple contacts.