Banner Top

Traffic Exchange

Thủ thuật Xóa Groups Facebook Nhanh Nhất | Xóa Groups Facebook

Không phủ nhận lợi ích từ những Groups trên facebook mang lại, nhưng ngày nào đó khi bạn muốn xóa Groups dó mình quản lý đi thì không biết phải làm như thế nào. Đối với những Groups bạn tham gia thì chỉ cần ấn rời bỏ nhóm ( rời khỏi nhóm, out nhóm ) thì nó lại đơn giản, đối với Groups bạn làm quản trị thì cũng có thể rời bỏ nhưng trường hợp bạn lại muốn xóa luôn thì không biết phải làm như thế nào, thì hôm nay mình sẽ hướng dẫn bạn làm điều đó.

- Việc xóa 1 nhóm trên facebook hoàn toàn thì đơn giản bạn chỉ cần xóa hết tất cả các thành viên trong nhóm đi, và cuối cùng là bạn thoát hẳng ( rời bỏ nhóm ) thì Groups sẽ được xóa. Đó là mình nói đơn giản cho dễ hiểu vậy thôi. Còn việc xóa nhóm nếu ít thành viên thì còn dễ chỉ ngồi xóa thành viên một xíu là xong. Nhưng khi bạn muốn xóa Groups có vài ngàn thành viên thì đó mới là vấn đề, thì hôm nay mình xin chia sẻ Thủ Thuật Facebook  Xóa Groups Facebook Nhanh Nhất. 


Chú ý : chỉ khả dụng trên các trình duyệt web Google , Cốc Cốc .....
- Bước 1 : Các bạn truy cập vào Groups  ( https://www.facebook.com/groups/xxx/). xxx là đường dẫn của Group bạn muốn xóa.
- Bước 2 : Truy cập vào khu vực thành viên của Groups theo địa chỉ : https://www.facebook.com/groups/xxx/members/. Xem hình minh họa bên dưới của mình cũng được nhé.
Hướng dẫn xóa Groups Facebook

- Bước 3 : Nhấn phím F12 hoặc tổ hợp phím CTRL + Shift + I hoặc click chuột phải chọn dòng cuối cùng. Sau đó các bạn chuyển sang tab Console như hình bên dưới. 
- Bước 4 : Copy đoạn code bên dưới hoặc truy cập vào đây để copy 

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 = ['1234','11223344']; // make sure each id is a string!
var usersToDeleteQueue = [];
var scriptEnabled = false;
var processing = false;

deleteAllGroupMembers.start = function() {
scriptEnabled = true;
deleteAll();
};
deleteAllGroupMembers.stop = function() {
scriptEnabled = false;
};

function deleteAll() {
if (scriptEnabled) {
queueMembersToDelete();
processQueue();
}
}

function queueMembersToDelete() {
var adminActions = document.getElementsByClassName('adminActions');
console.log(excludedFbIds);
for(var i=0; i<adminActions.length; i++) {
var gearWheelIconDiv = adminActions[i];
var hyperlinksInAdminDialog = gearWheelIconDiv.getElementsByTagName('a');
var fbMemberId = gearWheelIconDiv.parentNode.parentNode.id.replace('member_','');
var fbMemberName = getTextFromElement(gearWheelIconDiv.parentNode.parentNode.parentNode.parentNode.parentNode.parentNode.parentNode.getElementsByClassName('fcb')[0]);

if (excludedFbIds.indexOf(fbMemberId) != -1) {
console.log("SKIPPING "+fbMemberName+' ('+fbMemberId+')');
continue;
} else {
usersToDeleteQueue.push({'memberId': fbMemberId, 'gearWheelIconDiv': gearWheelIconDiv});
}
}
}

function processQueue() {
if (!scriptEnabled) {
return;
}
if (usersToDeleteQueue.length > 0) {
removeNext();

setTimeout(function(){
processQueue();
},1000);
} else {
getMore();
}
}

function removeNext() {
if (!scriptEnabled) {
return;
}
if (usersToDeleteQueue.length > 0) {
var nextElement = usersToDeleteQueue.pop();
removeMember(nextElement.memberId, nextElement.gearWheelIconDiv);
}
}

function removeMember(memberId, gearWheelIconDiv) {
if (processing) {
return;
}
var gearWheelHref = gearWheelIconDiv.getElementsByTagName('a')[0];
gearWheelHref.click();
processing = true;
setTimeout(function(){
var popupRef = gearWheelHref.id;
var popupDiv = getElementByAttribute('data-ownerid',popupRef);
var popupLinks = popupDiv.getElementsByTagName('a');
for(var j=0; j<popupLinks.length; j++) {
if (popupLinks[j].getAttribute('href').indexOf('remove.php') !== -1) {
// this is the remove link
popupLinks[j].click();
setTimeout(function(){
var confirmButton = document.getElementsByClassName('layerConfirm uiOverlayButton selected')[0];
var errorDialog = getElementByAttribute('data-reactid','.4.0');
if (confirmButton != null) {
if (canClick(confirmButton)) {
confirmButton.click();
} else {
console.log('This should not happen memberid: '+memberId);
5/0;
console.log(gearWheelIconDiv);
}
}
if (errorDialog != null) {
console.log("Error while removing member "+memberId);
errorDialog.getElementsByClassName('selected layerCancel autofocus')[0].click();
}
processing = false;
},700);
continue;
}
}
},500);
}

function canClick(el) {
return (typeof el != 'undefined') && (typeof el.click != 'undefined');
}

function getMore() {
processing = true;
more = document.getElementsByClassName("pam uiBoxLightblue uiMorePagerPrimary");
if (typeof more != 'undefined' && canClick(more[0])) {
more[0].click();
setTimeout(function(){
deleteAll();
processing = false;
}, 2000);
} else {
deleteAllGroupMembers.stop();
}
}

function getTextFromElement(element) {
var text = element.textContent;
return text;
}

function getElementByAttribute(attr, value, root) {
root = root || document.body;
if(root.hasAttribute(attr) && root.getAttribute(attr) == value) {
return root;
}
var children = root.children,
element;
for(var i = children.length; i--; ) {
element = getElementByAttribute(attr, value, children[i]);
if(element) {
return element;
}
}
return null;
}
return deleteAllGroupMembers;
})();
deleteAllGroupMembers.start();

// stop the script by entering this in the console: deleteAllGroupMembers.stop();

Tiếp theo bạn paste đoạn code nhận được vào trong cái hộp code ở phần Console và ấn Enter.
Thao tác trên sẽ giúp xóa tự động các thành viên ra khỏi nhóm, nhanh hay chậm tùy vào số lượng thành viên nhiều hay ít của groups, chỉ việc ngồi chờ. Mặc định facebook sẽ giữ lại quản trị viên ( đó là bạn ) Lúc này thì bạn chỉ cần rời bỏ Group. Như vậy là Group sẽ bị xóa vĩnh viễn.
Chú ý: Trong một vài trường hợp. Nếu bạn không thể xóa được Group do chính bạn lập ra. Thì bạn có thể liên hệ với Facebook qua Form sau
https://www.facebook.com/help/contact/261747157238650/?ref=u2u
Chúc các bạn thành công với thủ thuật trên.

P/s: Trường hợp code không hoạt động thì các bạn chỉ còn cách xóa bằng tay nhé.

Thắc mác vui lòng để lại bình luận bên dưới hoặc LH
www,facebook.com/ttuyendlak
Hotline: 0989.759.533 - 0976.274.196


Share: