Skip to content

Instantly share code, notes, and snippets.

View chandr1000's full-sized avatar

Irina Shinakawa chandr1000

View GitHub Profile
@chandr1000
chandr1000 / facebook-mass-unblock-group-members.js
Last active June 7, 2017 02:46 — forked from michaelv/facebook-mass-delete-group-members.js
This javascript unblocks all users in a facebook group. It works with the new facebook layout. Paste this in the javascript console. Note: This script is experimental. Use with your own risk!
var deleteAllGroupMembers = (function () {
var deleteAllGroupMembers = {};
// the facebook ids of the users that will not be removed.
// IMPORTANT: add your own facebook id here so that the script will not remove yourself!
var excludedFbIds = ['1845637820']; // make sure each id is a string!
var usersToDeleteQueue = [];
var scriptEnabled = false;
var processing = false;
deleteAllGroupMembers.start = function() {