您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Auto claim loop
当前为
// ==UserScript== // @name Rotator // @namespace Terminator // @version 0.1 // @description Auto claim loop // @author keno venas // @license MIT // @match https://bnb-earn.com/* // @match https://btcrocket.net/* // @match https://ethrocket.net/* // @match https://bch-rocket.com/* // @match https://dash-rocket.com/* // @match https://solanarocket.com/* // @match https://cardanorocket.com/* // @match https://trxrocket.com/* // @match https://tonrocket.com/* // @match https://bnbrocket.com/* // @match https://ltc-rocket.com/* // @match https://cryptoarea.net/* // @match https://sol-earn.com/* // @match https://tron-earn.com/* // @match https://faucetdash.com/* // @match https://matic-earn.com/* // @match https://cryptoxmr.net/* // @match https://dash-earn.com/* // @match https://dgb-earn.com/* // @match https://ton-earn.com/* // @match https://dgbrocket.com/* // @match https://xrp-rocket.com/* // @match https://matic-rocket.com/* // @match https://doge-rocket.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=cryptoarea.net // @grant none // ==/UserScript== (function() { 'use strict'; var style = document.createElement('style'); style.innerHTML = ` #contador { position: fixed; top: 10px; left: 10px; color: black; background-color: blue; padding: 5px 10px; border-radius: 5px; z-index: 9999; } `; document.head.appendChild(style); var contadorElement = $('<div id="contador">'); $('body').append(contadorElement); function atualizarContador(segundos) { contadorElement.text(segundos); } function recarregarPagina() { var segundos = 70; atualizarContador(segundos); setInterval(function() { segundos--; atualizarContador(segundos); if (segundos === 0) { location.reload(); } }, 1000); } recarregarPagina(); function clicarBotaoComDelay(selector, delay) { setTimeout(function() { var botao = document.querySelector(selector); if (botao) { botao.click(); } }, delay); } window.addEventListener('load', function() { clicarBotaoComDelay('button#faucet_roll', 5000); }); window.addEventListener('load', clicarComDelay, false); if (window.location.href === "https://bch-rocket.com/register") { window.location.href = "https://bch-rocket.com/login"; } function preencherCampos() { var email = "[email protected]"; var senha = "suasenha"; document.querySelector('input#floatingEmail').value = email; document.querySelector('input#floatingPassword').value = senha; setTimeout(clicarBotao, 3000); } function clicarBotao() { var botao = document.querySelector('button.btn'); if (botao) { botao.click(); } } window.addEventListener('load', preencherCampos); function clicarComDelay() { setTimeout(function() { var botao = document.querySelector('button#faucet_claim'); if (botao) { botao.click(); } }, 5000); } window.addEventListener('load', clicarComDelay, false); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址