您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
тупо нажимает 2 пока не попадет
// ==UserScript== // @name cryptoclaimhub.com bruteforce captcha test // @namespace http://tampermonkey.net/ // @version 2025-03-02 // @description тупо нажимает 2 пока не попадет // @author Danik Odze // @match https://cryptoclaimhub.com/faucet // @icon https://www.google.com/s2/favicons?sz=64&domain=cryptoclaimhub.com // @license MIT // @grant none // ==/UserScript== (function() { 'use strict'; var CaptchaSolverStatus = document.createElement('div'); document.body.appendChild(CaptchaSolverStatus); CaptchaSolverStatus.classList.add('captchasolver-status'); document.body.appendChild(document.createElement('style')).textContent = (` .captchasolver-status { position: fixed; font-size: 20px !important; top: 140px !important; right: 20px; z-index: 9999; pointer-events: none; } `); function setCaptchaSolverStatus(html, color) { if (color === 'green') { CaptchaSolverStatus.style.color = 'green'; } else if (color === 'red') { CaptchaSolverStatus.style.color = 'red'; } else { CaptchaSolverStatus.style.color = 'black'; } CaptchaSolverStatus.innerHTML = html; } setCaptchaSolverStatus(document.querySelector("body > div > div > nav > div > ul > li > p > span.badge.badge-primary-light").textContent, 'red'); class WorkerInterval { worker = null; constructor(callback, interval) { const blob = new Blob([`setInterval(() => postMessage(0), ${interval});`]); const workerScript = URL.createObjectURL(blob); this.worker = new Worker(workerScript); this.worker.onmessage = callback; } stop() { this.worker.terminate(); } } const interval = new WorkerInterval(() => { //1 минута = 60000 миллисекунд. location.reload(); }, 7*60000); if(document.querySelector("#iconContainer > div:nth-child(2) > i"))document.querySelector("#iconContainer > div:nth-child(2) > i").click(); if(document.querySelector("#claimButton"))document.querySelector("#claimButton").click(); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址