Monthly Archives: July 2020

Whatsapp online tracking

Simple devtools script to track when User is coming online/offline with privacy options on (whatsapp is not showing last seen) function getElementByXpath(path) { return document.evaluate(path, document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue; } var online = false; setInterval(function() { if (getElementByXpath(‘//*[@id=”main”]/header/div[2]/div[1]/div/span’).textContent == “User … Continue reading

Posted in General | Leave a comment