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

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

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

  1. // ==UserScript==
  2. // @name Free and unlimited Zero Coin(no captcha) script (freezeroco.in)
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0
  5. // @description Earn unlimited and free ZeroChain on freezeroco.in using this script.
  6. // @author JEGMASTER
  7. // @license
  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.  
  25. // Remove animated background from website - optional.
  26. //Object.assign(document.getElementsByTagName('body')[0].style, { backgroundImage: 'none' });
  27. //Login.
  28. var zer= "t1PWnpfMWjjBzxzmUt28NQqE4Nm8ykHJwWN"/////EXAMPLE/////
  29. var address = false;
  30. setInterval(function() {
  31. if (document.querySelector("body > center > form > input[type=text]:nth-child(10)")) {
  32. document.getElementsByName("bitcoinwallet")[0].value = zer;
  33. address = true;
  34. if ((address == true)) {
  35. document.querySelector("body > center > form > input.submit").click();
  36. }
  37. }}, 1000);
  38. setInterval(function() {
  39. if (document.querySelector("body > p:nth-child(3)")) {
  40. window.open("https://freezeroco.in/","_self");
  41. document.querySelector("body > center > a > img").click();
  42. }
  43. }, 60000 );
  44.  
  45. setInterval(function() {
  46. // Click on claim buttons.
  47. if (document.getElementById('button1')) {
  48. document.getElementById('button1').click();
  49. }
  50. // Click on 1link skip button.
  51. if (document.getElementsByClassName('skipbutton')[0]) {
  52. document.getElementsByClassName('skipbutton')[0].click();
  53. }
  54. }, 1000);
  55.  
  56. })();