Facebook Typing Detector

Alerts you when you have an opened chat window and that person is typing. Might be usefull to stalk who's stalking you

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ć!)

// Alerts you when you have an opened chat window and that person is typing 
// might be usefull to stalk who's stalking you
//
// ==UserScript==
// @name    Facebook Typing Detector
// @description Alerts you when you have an opened chat window and that person is typing. Might be usefull to stalk who's stalking you
// @date    2019-10-20
// @version  1.1
// @grant    none
// @include	https://facebook.com/*
// @include	https://www.facebook.com/*
// @namespace https://greasyfork.org/users/389185
// ==/UserScript==


 setInterval(function(){ 
  if(document.getElementsByClassName("_31o4 _3njy").length > 0)
  {
     alert("Yo, someone's typing"); 
  } 
 }, 1000);