在您安裝前,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); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址