No-You Clicker

try to take over the world!

  1. // ==UserScript==
  2. // @name No-You Clicker
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.3
  5. // @description try to take over the world!
  6. // @author You
  7. // @match *://no-you.com/jp/*
  8. // @match http://no-you.com/jp/index.html
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. setInterval(function(){
  13. var xhr = new XMLHttpRequest();
  14. xhr.open('GET', "/heh.php", true);
  15. xhr.responseType = 'json';
  16. xhr.onload = function() {
  17. var status = xhr.status;
  18. if (status == 200) {
  19. var val = xhr.response;//document.getElementById("ctr").value;
  20. var digitOne = val % 10;
  21. var digitTwo = (val % 100 - digitOne)/10;
  22. console.log(val + " " + digitOne + " " + digitTwo);
  23. if(digitOne != digitTwo)
  24. document.getElementById("ctr").click();
  25. }
  26. else {
  27. console.log("err");
  28. }
  29. };
  30. xhr.send();
  31. }, 2000 );
  32. // Your code here...
  33. })();

QingJ © 2025

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