Enter this in developer console (f12) THIS IS NOT A MALWARE! (Look at the code)
After entering it, poke someone. This script will poke automatically.
setInterval(() => { | |
const pokes = document.querySelector("#poke_live_new"); | |
if(!pokes) return; | |
Array.prototype.forEach.call(pokes.children, (v) => { | |
if(v.classList.contains("hidden_elem")) return; | |
const pokeButton = v.querySelector('a.selected'); | |
if(pokeButton) pokeButton.click(); | |
}); | |
}, 500); |