KR exploit

reloads page as invest button

目前为 2017-03-14 提交的版本。查看 最新版本

  1. // ==UserScript==
  2. // @name KR exploit
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.00
  5. // @description reloads page as invest button
  6. // @author meatman2tasty
  7. // @match http://karnage.io/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. $("#loginButtonHolder").mousedown(function(ev){
  12. if(ev.which == 1)
  13. {
  14. location.reload();
  15. }
  16. });