Facebook Poke Bot

fucking people

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 Poke Bot
// @namespace    http://your.homepage/
// @version      1.0
// @description  fucking people
// @author       L0L_Limewire
// @match        https://www.facebook.com/pokes/?notif_t=poke
// @grant        none
// ==/UserScript==

function updatePoke(){
	var gg = document.getElementsByClassName("_42ft _4jy0 _4jy3 _4jy1 selected _51sy").length
	if(gg>0){
		for (var i in document.getElementsByClassName("_42ft _4jy0 _4jy3 _4jy1 selected _51sy")){
			document.getElementsByClassName("_42ft _4jy0 _4jy3 _4jy1 selected _51sy")[i].click()
		}
	}
}

setInterval(updatePoke,100)