sato.host : Auto Faucet

https://ouo.io/gzmiqK

  1. // ==UserScript==
  2. // @name sato.host : Auto Faucet
  3. // @namespace sato.host.auto.faucet
  4. // @version 1.1
  5. // @description https://ouo.io/gzmiqK
  6. // @author stealtosvra
  7. // @match https://sato.host/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=sato.host
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. (function() {
  14.  
  15. 'use strict';
  16.  
  17. function clickClaimButton() {if (document.querySelector('input.btn')) {document.querySelector('input.btn').click();}}
  18.  
  19. setTimeout(clickClaimButton, 60000);
  20. setTimeout(function() {location.reload();}, 70 * 1000);
  21.  
  22. })();