Greasy Fork

来自缓存

Greasy Fork is available in English.

🎁Free Unlimited Dogecoin Faucet 4.0🎁

Claim Unlimited Dogecoin

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         🎁Free Unlimited Dogecoin Faucet 4.0🎁
// @namespace    Claim Unlimited Dogecoin
// @version      4.0
// @description  Claim Unlimited Dogecoin
// @author       lotocamion
// @match        https://iqfaucet.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=iqfaucet.com
// @require      http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js
// @run-at        document-start
// @match        *://*/recaptcha/*
// @connect      google.com
// @connect      engageub.pythonanywhere.com
// @connect      engageub1.pythonanywhere.com
// ==/UserScript==

(function() {
    'use strict';
    var clicked = false;
    var address = false;

    if($('.form-control')) {
    $('.form-control').val("DGNRvwyYSMYKjxFDm8BHTcD23kWesLg5i1");////EDIT YOUR ADDRESS HERE/////
    address = true;
    }
    setTimeout(function() {
    if($('.btn.btn-primary') && (address == true)) {
    $('.btn.btn-primary').click();
    } }, 3000);
    setTimeout(function() {
    if($('.btn.btn-success.btn-lg')) {
    $('.btn.btn-success.btn-lg').click();
    } }, 1000);
    setInterval(function(){
    if(!clicked && unsafeWindow.grecaptcha && unsafeWindow.grecaptcha.getResponse().length > 0){
    document.getElementsByClassName("btn btn-success")[0].click();
    } }, 3000);
    setTimeout(function() {
    if (document.getElementsByClassName("alert alert-success")[0]) {
    window.location.replace("https://iqfaucet.com?ref=403036");
    }}, 3000);
    setTimeout(function() {
    if(document.querySelector("body > div:nth-child(3) > div.col-md-6 > div > div.alert.alert-danger")){
    window.location.replace(window.location.pathname + window.location.search + window.location.hash);
    } }, 5000);
    setInterval(function() {
    if(document.querySelector("#reset-button")){
    document.querySelector("#reset-button").click();
    } }, 3000);
    setInterval(function() {
    window.location.replace(window.location.pathname + window.location.search + window.location.hash);
    }, 40000);
    })();