Skip to content

Instantly share code, notes, and snippets.

@AbdulrahmanMasoud
Created November 23, 2021 12:44
Show Gist options
  • Save AbdulrahmanMasoud/c5ebe5caaca31cb2686771301ec90d44 to your computer and use it in GitHub Desktop.
Save AbdulrahmanMasoud/c5ebe5caaca31cb2686771301ec90d44 to your computer and use it in GitHub Desktop.
// number per click you can change it depend your processor (numOfClick)
// press f12 -> add the code -> press enter
//popcat popcat.click popcat hack
setInterval(function(numOfClick = 1000){
for (i = 0; i < numOfClick; i++) {
document.dispatchEvent(new KeyboardEvent('keydown', {shiftKey:true}));
}
});
@WhisterWasTaken
Copy link

Nice, works good.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment