Skip to content

Instantly share code, notes, and snippets.

@henryduong26
Created February 22, 2022 15:27
Show Gist options
  • Save henryduong26/bf341a512d18dc80d3843675fb6ac711 to your computer and use it in GitHub Desktop.
Save henryduong26/bf341a512d18dc80d3843675fb6ac711 to your computer and use it in GitHub Desktop.
Auto click on popcat click meme (popcat.click)
// for detail: https://github.com/henryduong26/popcat-click
const ev = new KeyboardEvent('keydown',{key:'g',ctrlKey:true});
setInterval(() => {
for (i=0;i<799;i++) {document.dispatchEvent(ev)}
},30000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment