Skip to content

Instantly share code, notes, and snippets.

@marsnow
Forked from DaWe35/Popcat click bot.js
Last active August 13, 2021 16:21
Show Gist options
  • Select an option

  • Save marsnow/67978406dfffee3231c8cf7a2246b9d8 to your computer and use it in GitHub Desktop.

Select an option

Save marsnow/67978406dfffee3231c8cf7a2246b9d8 to your computer and use it in GitHub Desktop.
/*
1) 打開 https://popcat.click
2) 打開主控台 (F12 / command + options + i)
3) 複製貼上 + enter
*/
var event = new KeyboardEvent('keydown', {
key: 'g',
ctrlKey: true
});
setInterval(function(){
document.dispatchEvent(event);
}, 100);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment