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

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

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.

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

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

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