Facebook
From Gamboge Bee, 3 Years ago, written in JavaScript.
This paste is a reply to Re: popcat.click for Tampermonkey Script from Hot Rhinoceros - view diff
Embed
Download Paste or View Raw
Hits: 278
  1. // ==UserScript==
  2. // @name         popcat.click hekk
  3. // @namespace    http://tampermonkey.net/
  4. // @version      0.1
  5. // @description  ok so this is popcat.click hekk yea
  6. // @author       ParkusDaking
  7. // @match        https://popcat.click/
  8. // @grant        none
  9. // ==/UserScript==
  10.  
  11. var event = new KeyboardEvent('keydown', {
  12.         key: 'j',
  13.         ctrlKey: true
  14. });
  15.  
  16. setInterval(function(){
  17.         for (var a = 0; a < 128; a++) {
  18.                 document.dispatchEvent(event);
  19.         }
  20. }, 0);