Comically Slow Replays

Slows menu replays to x0.5 speed!

  1. // ==UserScript==
  2. // @name Comically Slow Replays
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Slows menu replays to x0.5 speed!
  6. // @author Evil ban (special thanks to MYTH_doglover)
  7. // @match https://bonk.io/*
  8. // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. let replayspeed = document.getElementById('bgreplay_timescrub');
  13. replayspeed.max = 100;
  14. replayspeed.value = 0.5;