Skip to content

Instantly share code, notes, and snippets.

@hoangitk
Created February 5, 2025 13:39
Show Gist options
  • Save hoangitk/065f7514807d42a3b8e04a89b9d4d8aa to your computer and use it in GitHub Desktop.
Save hoangitk/065f7514807d42a3b8e04a89b9d4d8aa to your computer and use it in GitHub Desktop.
[Simulate Mouse Move] #tool #js #bookmarklet
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