您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Auto Claim any Cryptocurrency on this website
当前为
// ==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); })();