Skip to content

Instantly share code, notes, and snippets.

@Vahaexe
Created April 17, 2021 00:28
Show Gist options
  • Save Vahaexe/9c50f0a3400b326715c8123568ca8a25 to your computer and use it in GitHub Desktop.
Save Vahaexe/9c50f0a3400b326715c8123568ca8a25 to your computer and use it in GitHub Desktop.
Popcat scripts
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);
@buser1757
Copy link

  • [hvad]

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