Advertisement
jasperlow

Untitled

Aug 12th, 2021
885
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var clickcat = new KeyboardEvent('keydown', {
  2.     key: 'c',
  3.     ctrlKey: true
  4. });
  5.  
  6. setInterval(function(){
  7.         document.dispatchEvent(clickcat);
  8. }, 0);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement