KR exploit

reloads page as invest button

  1. // ==UserScript==
  2. // @name KR exploit
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.11
  5. // @description reloads page as invest button
  6. // @author meatman2tasty
  7. // @match http://karnage.io/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. $(".loginButton").mousedown(function(ev){
  12. if(ev.which == 1)
  13. {
  14. location.reload(true);
  15. }
  16. });
  17.  
  18. window.onkeydown = function() {
  19. if (event.keyCode === 220) {
  20. location.reload(true);
  21. }
  22. };

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址