Facebook
From Little Camel, 3 Years ago, written in JavaScript.
This paste is a reply to Re: popcat.click for Tampermonkey Script from Hot Rhinoceros - go back
Embed
// ==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);