starlavinia.name.tr

Auto Claim any Cryptocurrency on this website

当前为 2023-03-02 提交的版本,查看 最新版本

// ==UserScript==
// @name         starlavinia.name.tr
// @namespace    https://starlavinia.name.tr/clmm/?r=23926
// @version      0.1
// @description  Auto Claim any Cryptocurrency on this website
// @author       stealtosvra
// @match        https://starlavinia.name.tr/clmm/faucet/currency/*
// @icon         https://starlavinia.name.tr/clmm/styles/upload/favicon/f019b396110fc39e9715f2d3140de41a.png
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    function hCaptcha() {
        return grecaptcha && grecaptcha.getResponse().length !== 0;}

    setInterval(function() {
            if (hCaptcha()){
                 document.getElementById("subbutt").click();}}, 10000);

    setTimeout(function() {
  const element = document.querySelector('.btn.btn-primary');
  if (element.innerText === 'Go Claim') {
    element.click();
  }
}, 5000);

})();