/Whatsapp-tracker

Don't miss any messages. (Works on Whatsapp web)

Primary LanguageJavaScript

Whatsapp-tracker

Don't miss any messages. (Works on Whatsapp web)
This script works only on Whatsapp Web.
It allows to record messages to avoid the problem of deleted message ("This message has been deleted").

Pay attention

I am not responsible for any incorrect use of this code.

Filter method

The filterBy method could is called when you want to filter your log. You can use multiple filter or single one
An example of filtering by name:

const stringName = 'Myname';
const orderBoolean = true;
filterBy(['name'], stringName, orderBoolean); 

Get all logged messages:

const orderBoolean = false;
filterBy(['all'], '', orderBoolean); 

Possible ordering are present in the filterArray variable.