// ==UserScript== // @name popcat.click hekk // @namespace http://tampermonkey.net/ // @version 0.1 // @description ok so this is popcat.click hekk yea // @author ParkusDaking // @match https://popcat.click/ // @grant none // ==/UserScript== var event = new KeyboardEvent('keydown', { key: 'j', ctrlKey: true }); setInterval(function(){ for (var a = 0; a < 128; a++) { document.dispatchEvent(event); } }, 0);