Btcdraw free BTCash

Free Claim Btcash

在您安装前,Greasy Fork 希望您知道此脚本声明其包含了一些负面功能。这些功能也许会使脚本作者获利,而不能给您带来任何直接的金钱收益。

作者可从这份脚本获得佣金,例如通过修改链接地址或提供优惠券代码以包含推荐或附属代码。

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         Btcdraw free BTCash
// @namespace    http://tampermonkey.net/
// @version      0.3
// @description  Free Claim Btcash
// @author       vikiweb
// @match        https://btcdraw.elementfx.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=elementfx.com
// @grant        none
// @license      MIT
// @antifeature  referral-link
// ==/UserScript==

(function() {
    'use strict';

    let btchAddress = "qqdunqmmnt27a2v8myyrsfnrl9eqgsfgfuhf06ppnx";


    function isCaptchaChecked() {
        return grecaptcha && grecaptcha.getResponse().length !== 0;
    }

    setInterval(function() {
        if(document.querySelector(".form-horizontal .step2 input[type='text']")){
            document.querySelector(".form-horizontal .step2 input[type='text']").value = btchAddress
        }
    },2000)


    setInterval(function() {
        if(document.querySelector(".form-horizontal .form-group  input[type='submit'].claim-button")){
            if (isCaptchaChecked()) {
                document.querySelector(".form-horizontal .form-group input[type='submit'].claim-button").click()
            }
        }
    },4000)


    setInterval(function() {
        if(!document.querySelector(".form-horizontal .step2 input[type='text']")){
            window.location.replace('https://btcdraw.elementfx.com');
        }
    },30000)

})();