インストールの前に、Greasy Forkは、このスクリプトにアンチ機能が含まれることをお知らせします。これはあなたではなく、スクリプトの作者の利益を目的としてます。
このスクリプトは作者に手数料を獲得させます。例えば、リンクの書き変えたりクーポンコードを提供する際に、紹介・アフィリエイト用のコードを含めます。
Claim free LTC
// ==UserScript== // @name Urltaka Free LTC // @namespace http://tampermonkey.net/ // @version 0.4 // @description Claim free LTC // @author vikiweb // @match https://urltaka.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=urltaka.com // @grant none // @antifeature referral-link // @license MIT // ==/UserScript== (function() { 'use strict'; let ltcAddress = "MPKodg6ph2Yb8jgqsJdgs6Nx52FFa6h2jT"; 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 = ltcAddress } },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://urltaka.com/'); } },60000) })();