在您安装前,Greasy Fork 希望您知道此脚本包含可能不受欢迎的功能,也许会帮助脚本作者获利,而不能给你带来任何收益。
作者从这份脚本获得佣金,例如透过改写链接或提供优惠券代码以包含推荐或附属代码。
Claim free LTC
// ==UserScript== // @name Askpaccosi free Btc faucet // @namespace http://tampermonkey.net/ // @version 0.2 // @description Claim free LTC // @author vikiweb // @match https://askpaccosi.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=askpaccosi.com // @grant none // @antifeature referral-link // @license MIT // ==/UserScript== (function() { 'use strict'; var btcAddress = '16Lfq4QC9Lgbse4oggWUVAe1e6Rv7o6ELn'; function isCaptchaChecked() { return grecaptcha && grecaptcha.getResponse().length !== 0; } setInterval(function() { if (document.querySelector("input[type='text']")) { document.querySelector("input[type='text']").value = btcAddress; } if (document.querySelector(".claim-button[type='submit']")) { if (isCaptchaChecked()) { document.querySelector(".claim-button[type='submit']").click() } } }, 10000); setInterval(function() { if((document.querySelector("body center div.alert-success"))){ if( (document.querySelector("body center div.alert-success").innerText.includes("satoshi was sent"))) { window.location.replace('https://askpaccosi.com/claimbtc/'); } } if(document.querySelectorAll("body center p.alert-info")){ if(document.querySelectorAll("body center p.alert-info")[1].innerText.includes('You have to wait')){ window.location.replace('https://askpaccosi.com/claimbtc/'); } } }, 60000); })();