您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Claim Free dogecoin
// ==UserScript== // @name Vipminer dogecoin Faucet // @namespace Claim Free dogecoin // @version 4.1 // @description Claim Free dogecoin // @author elmer76 // @match https://vipminer.xyz/free-dogecoin-miner/* // @icon https://www.google.com/s2/favicons?sz=64&domain=vipminer.xyz // @grant none // @license MIT // ==/UserScript== //INSTALL THE SCRIPT AND HCAPTCHA SOLVER AND EDIT LINE 20 WITH YOUR FAUCETPAY ADDRESS //THEN GOTO https://vipminer.xyz/free-dogecoin-miner/?r=TDpBsMSYH6wMmLCxDFLYTb2qW3wVebw3nt AND LEAVE THE TAB OPEN (function() { 'use strict'; var doge = "" //EDIT WITH FAUCETPAY DOGE ADDRESS if(document.querySelector("#address")){ document.querySelector("#address").value = doge } if(document.querySelector("#startButton")){ document.querySelector("#startButton").click() } setInterval(function() { if (document.querySelector("#count").textContent.includes("0.00100000")){ document.querySelector("#showContentButton").click(); } },3000); setInterval(function() { if(document.querySelector("#count").textContent.includes("0.00100000")&& grecaptcha.getResponse().length > 0 || document.querySelector(".g-recaptcha").getAttribute("value").length > 0){ document.querySelector("#login").click(); }},5000); setTimeout(function(){ if(document.querySelector("div[role='alert']").textContent.includes("was sent to your")){ window.location.replace('https://vipminer.xyz/free-dogecoin-miner/?r=TDpBsMSYH6wMmLCxDFLYTb2qW3wVebw3nt') }}, 2000); setTimeout(function(){ if(document.querySelector("div[role='alert']").textContent.includes("You have to wait")){ window.location.replace('https://vipminer.xyz/free-dogecoin-miner/?r=TDpBsMSYH6wMmLCxDFLYTb2qW3wVebw3nt') }}, 20000); setTimeout(function(){ if(document.querySelector("div[role='alert']").textContent.includes("try again")){ window.location.replace('https://vipminer.xyz/free-dogecoin-miner/?r=TDpBsMSYH6wMmLCxDFLYTb2qW3wVebw3nt') }}, 2000); setTimeout(function(){ if(document.querySelector("div[role='alert']").textContent.includes("sufficient funds")){ window.location.replace(window.location.pathname + window.location.search + window.location.hash); }}, 2000); var y = $(window).scrollTop(); $('html, body').animate({ scrollTop: y + 900}) setTimeout(() => { location.reload(); }, 180000); })();