Facebook Group Pending Posts Deleter

Deletes All Pending Facebook Group Posts

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

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

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

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.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==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);