Created
May 24, 2024 11:45
-
-
Save silverwolfceh/579305f424f48d919ed9bc54c850ff27 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let mdown = new MouseEvent('pointerdown', { view: null, bubbles: true, cancelable: true}); | |
let autoclick = function() { | |
let ele = document.getElementsByTagName('canvas'); | |
if(ele.length > 0) { | |
ele[0].dispatchEvent(mdown); | |
} | |
} | |
setInterval(autoclick, 100); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment