Free and unlimited Zero Coin(no captcha) script (freezeroco.in)

Earn unlimited and free ZeroChain on freezeroco.in using this script.

当前为 2022-01-31 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Free and unlimited Zero Coin(no captcha) script (freezeroco.in)
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.4
  5. // @description Earn unlimited and free ZeroChain on freezeroco.in using this script.
  6. // @author JEGMASTER
  7. // @license MIT
  8. // @match https://freezeroco.in/
  9. // @match https://freezeroco.in/*
  10. // @match https://1ink.cc/*
  11. // @match https://donaldco.in/*
  12. // @grant none
  13. // ==/UserScript==
  14.  
  15. /*
  16. |=======================================================================================================================================================| |
  17. |This script requires a ZeroChain wallet, you can create one by following this link: https://zerochain.info/wallet. Finally, after editing your |
  18. |wallet address, in the zer variable, go to this page: https://freezeroco.in/?ref=t1KpBhCbeiQjWhDUfuAoGLNBgv7ReMCCSZM and let the script log in for you.|
  19. |=======================================================================================================================================================|
  20. */
  21.  
  22. (function() {
  23. 'use strict';
  24. //Automatic Login.
  25. var zer= "t1PWnpfMWjjBzxzmUt28NQqE4Nm8ykHJwWN"/////EXAMPLE/////
  26. var address = false;
  27. setInterval(function() {
  28. if (document.querySelector("body > center > form > input[type=text]:nth-child(10)")) {
  29. document.getElementsByName("bitcoinwallet")[0].value = zer;
  30. address = true;
  31. if ((address == true)) {
  32. document.querySelector("body > center > form > input.submit").click();
  33. }
  34. }}, 1000);
  35. setInterval(function() {
  36. //resolve error 404
  37. if (document.querySelector("body > p:nth-child(3)")) {
  38. window.open("https://freezeroco.in/","_self");
  39. document.querySelector("body > center > a > img").click();
  40. }
  41. }, 60000 );
  42.  
  43. setInterval(function() {
  44. // Click on claim buttons.
  45. if (document.getElementById('button1')) {
  46. document.getElementById('button1').click();
  47. }
  48. // Click on 1link skip button.
  49. if (document.getElementsByClassName('skipbutton')[0]) {
  50. document.getElementsByClassName('skipbutton')[0].click();
  51. }
  52. }, 1000);
  53.  
  54. setInterval(function() {
  55.  
  56. if (document.querySelector("#form_id > input.submit2").value=="I'm Not Bot") {
  57. document.querySelector("#form_id > input.submit2").click();
  58. }
  59. }, 3000);
  60.  
  61.  
  62. })();