Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- 1) Open https://popcat.click
- 2) Open console (F12)
- 3) Insert code & run
- */
- var event = new KeyboardEvent('keydown', {
- key: 'g',
- ctrlKey: true
- });
- setInterval(function(){
- for (i = 0; i < 100; i++) {
- document.dispatchEvent(event);
- }
- }, 0);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement