Created
March 2, 2012 23:55
-
-
Save adriaanm/1962608 to your computer and use it in GitHub Desktop.
delete all members of a fb group -- c'mon facebook, how hard can it be?
This file contains 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
// first go to https://www.facebook.com/groups/XXXX/members/ | |
// then paste this in the javascript console | |
deleteAll = []; | |
deleteAll.elms = []; | |
deleteAll.canClick = function (el) { | |
return (typeof el != 'undefined') && (typeof el.click != 'undefined'); | |
} | |
deleteAll.load = function() { | |
deleteAll.elms = document.getElementsByClassName("mhm auxiliaryButton closeButton uiCloseButton"); | |
if (deleteAll.elms.length < 5 ) { | |
setTimeout(deleteAll.getMore, 1000); | |
} else { | |
setTimeout(deleteAll.go, 2000); | |
} | |
} | |
deleteAll.getMore = function() { | |
more = document.getElementsByClassName("pam uiBoxLightblue uiMorePagerPrimary"); | |
if (typeof more != 'undefined' && deleteAll.canClick(more[0])) { | |
more[0].click(); | |
setTimeout(deleteAll.load, 2000); | |
} else { | |
setTimeout(deleteAll.load, 100); | |
} | |
} | |
deleteAll.go = function() { | |
try { | |
deleteAll.doClick(2); | |
} catch(e) { | |
setTimeout(deleteAll.load, 1000); | |
} finally { | |
setTimeout(deleteAll.load, 500000); | |
} | |
} | |
deleteAll.doClick = function(i) { | |
deleteAll.elms[i].click(); | |
setTimeout(function(){deleteAll.confirm(i + 1)}, 750); | |
} | |
deleteAll.confirm = function (i) { | |
remove_but = document.getElementsByName("confirm")[0]; | |
if (i < deleteAll.elms.length - 5 && deleteAll.canClick(remove_but) && remove_but.value == "Confirm") { | |
remove_but.click(); | |
setTimeout(function(){deleteAll.doClick(i)}, 500); | |
} else { | |
setTimeout(deleteAll.getMore, 2000); | |
} | |
} | |
// deleteAll.fullRestart = function() { | |
// membersLink = document.getElementsByClassName("groupsCleanLink groupsCleanLinksSelected"); | |
// if (typeof membersLink != 'undefined' && deleteAll.canClick(membersLink[0])) { membersLink[0].click(); } | |
// setTimeout(deleteAll.go, 5000); | |
// } | |
deleteAll.load(); |
Greaaaaaat babrath!
The script is well functionning. you are the best !
thank you very well
You are doing the Lord's work, son :)
Please guys someone help me here! this script dont work and im freaking out! i really need to delete the group i made by mistake!
anyone ? ? ?
I created a script that works with the new facebook layout: https://gist.github.com/michaelv/11145168
Enjoy!
Some pieces of the code were copied from this gist.
Hi there.
Here is another short working gist
https://gist.github.com/nirgeier/7c3950db8f23e67b155a
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi Barbrath,
PS: The new script did work!!!! I'm so excited!
I signed up to this website because I really wanted to let you know, thank you SOOOOO much!
I have an obsolete group with 1645 members! I can't imagine how much time I would to spend to remove all members one by one!