Created
February 5, 2025 13:39
-
-
Save hoangitk/065f7514807d42a3b8e04a89b9d4d8aa to your computer and use it in GitHub Desktop.
[Simulate Mouse Move] #tool #js #bookmarklet
This file contains hidden or 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
javascript:(function(){setInterval(()=>{const elements=document.querySelectorAll("span");const element=elements[Math.floor(Math.random() * elements.length)];element.dispatchEvent(new MouseEvent('mousemove',{bubbles:true,cancelable:true}));console.log('Simulated mousemove');},240_000);})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment