Skip to content

Instantly share code, notes, and snippets.

@IamSkyBlue
Last active March 21, 2022 17:16
Show Gist options
  • Save IamSkyBlue/ead89a501db5d08a23f602b81d38ad20 to your computer and use it in GitHub Desktop.
Save IamSkyBlue/ead89a501db5d08a23f602b81d38ad20 to your computer and use it in GitHub Desktop.
pop cat click request
/*
https://popcat.click
open devtools and go to console (or just F12)
copy & paste code below
*/
setInterval(() => {
clickPerRequest = 800 // how many click sent in one request, default set to 800
reToken = localStorage.getItem("_grecaptcha");
url = "https://stats.popcat.click/pop?pop_count=" + clickPerRequest + "&captcha_token=" + reToken
fetch(
url,
{
method: "POST",
}
);
}, 35000); // time between request in millisecond, default set to 35000 (35s)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment