adfreeway

Make Money online with adfreeway.

目前为 2022-04-30 提交的版本。查看 最新版本

  1. // ==UserScript==
  2. // @name adfreeway
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Make Money online with adfreeway.
  6. // @author You
  7. // @match https://adfreeway.com/myaccount/content
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=adfreeway.com
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. var claimaTimer = setInterval (function() {claima(); }, Math.floor(Math.random() * 1500) + 1500);
  15. var claimbTimer = setInterval (function() {claimb(); }, Math.floor(Math.random() * 2500) + 2500);
  16. function claima() {
  17. var x = Math.floor((Math.random() * 2) + 1);
  18. if (x == 1)
  19. {
  20. document.querySelector('div.ugc-wrap:nth-child(1) > div:nth-child(2) > form:nth-child(1) > input:nth-child(3)').click();
  21. }
  22. if (x == 2)
  23. {
  24. document.querySelector('div.ugc-wrap:nth-child(1) > div:nth-child(2) > form:nth-child(3) > input:nth-child(3)').click();
  25. }
  26. }
  27. function claimb() {
  28. location.href = "https://adfreeway.com/myaccount/content";
  29. }
  30.  
  31. })();