Skip to content

Instantly share code, notes, and snippets.

@tweikiang
Forked from DaWe35/Popcat click bot.js
Created August 16, 2021 09:58
Show Gist options
  • Select an option

  • Save tweikiang/63528d8a9d6892e34741d7cde04e19d3 to your computer and use it in GitHub Desktop.

Select an option

Save tweikiang/63528d8a9d6892e34741d7cde04e19d3 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