Greasy Fork is available in English.

Facebook Group Pending Posts Deleter

Deletes All Pending Facebook Group Posts

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name     Facebook Group Pending Posts Deleter
// @description:en Deletes All Pending Facebook Group Posts
// @version  1
// @grant    none
// @include        http://*.facebook.com/*
// @include        https://*.facebook.com/*
// @namespace https://greasyfork.org/users/663733
// @description Deletes All Pending Facebook Group Posts
// ==/UserScript==


var i = 0;
function main(){
do {
i = i + 1;


   if (document.getElementsByClassName('layerConfirm')[0] >= 1 && document.getElementsByClassName('layerConfirm')[0] !== undefined) {
      document.getElementsByClassName('layerConfirm')[0].click();
   }
  else (console.error() !== null)
  {document.getElementsByClassName('layerConfirm')[0].click();
}
   if (document.getElementsByClassName('sx_616ed1')[0] >= 1 && document.getElementsByClassName('sx_616ed1')[0] !== undefined) {
      document.getElementsByClassName('sx_616ed1')[0].click();

   }
   else(console.error() !== null)
   {
  document.getElementsByClassName('sx_616ed1')[0].click();
  }
} while (i < 10000); }

  setTimeout(main, 2000);