Skip to content

Instantly share code, notes, and snippets.

@Trevor-2
Forked from DaWe35/Popcat click bot.js
Created September 27, 2024 23:10
Show Gist options
  • Save Trevor-2/0c2ac5ba298d8b8f53a12487ffe03ac1 to your computer and use it in GitHub Desktop.
Save Trevor-2/0c2ac5ba298d8b8f53a12487ffe03ac1 to your computer and use it in GitHub Desktop.
/*
1) Open https://popcat.click
2) Open console (F12)
3) Insert code & run
*/
var event = new KeyboardEvent('keydown', {
key: 'g',
ctrlKey: true
});
setInterval(function(){
for (i = 0; i < 100; i++) {
document.dispatchEvent(event);
}
}, 0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment