Skip to content

Instantly share code, notes, and snippets.

View henryduong26's full-sized avatar
🏠
Working from home

Henry Duong henryduong26

🏠
Working from home
View GitHub Profile
@henryduong26
henryduong26 / Popcat-auto-click.js
Created February 22, 2022 15:27
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);