HackingUniversity - Hacks . Tricks . How-To's

30 July 2013

Automatically Confirm Facebook Group Member’s Requests

Facebook Groups is a popular service for meeting new people and interacting with them by posting new stuff everyday and getting more from their side. And if you have a popular group where already added members are adding more and more members then its really difficult to accept every person one by one and make them member of that group. So do we have any solution well yes we have a automatic request accepting JavaScript trick that works similar to adding your friends automatically to your group so now just check out the below tutorial for more in depth knowledge of this hack.

  1. Open Facebook > Group Member’s Request Page. (https://www.facebook.com/groups/xxxxxxx/requests/) replace xxxxxxxx with your Group’s Username.
  2. Now you need to open Console menu on your browser to execute JavaScript so console menu buttons are different for every browser. Chrome press Ctrl + Shift + J | Firefox press Ctrl + Shift + K | Safari press Ctrl + Alt + I
  3. Now just press Esc button and it will show your Console Menu, now paste the below JavaScript code into it to execute it and press Enter.

    javascript:elms=document.getElementsByClassName("uiButtonConfirm");
    for (i=0;i<elms.length;i++){
    elms[i].click();
    };

    console-menu-facebook

  4. That’s it now every request would be accepted and you do not need to accept every request individually, so its much more easier for you to operate your group.

So that’s it guys now you can easily accept all member’s request in your group for more faster response. Have fun and do share this post with all your friends.