// ==UserScript== // @name carefree fun2 // @namespace Violentmonkey Scripts // @match *://freetrx.fun/* // @match *://go.madshiba.fun/* // @match *://go2.madshiba.fun/* // @match *://test.madshiba.fun/* // @match *://tech.madshiba.fun/* // @match *://claim.fun/* // @match *://blog.madshiba.fun/* // @match *://wiki-topia.com/* // @match *://blog.wiki-topia.com/* // @match *://blog.cryptowidgets.net/* // @match *://zed.madshiba.fun/* // @match *://blog.insurancegold.in/* // @match *://blog.mdn.lol/* // @match *://claimtron.club/* // @match *://adlink.bitcomarket.net/* // @run-at document-end // @grant none // @version 1.5 // @author sABER (juansi) Contribuciones via FaucetPay User: Crypto4Script // @description Snippet de uso personal, adicional para pasar acortadores. Try to take over the world! // @downloadURL none // ==/UserScript== (function() {'use strict'; function captcha_required(selector) {const t= setInterval( function() { if (window.grecaptcha && !!window.grecaptcha.getResponse()) { document.querySelector(selector).submit(); clearInterval(t);}}, 7000);} function espera(selector){window.setTimeout(function() { document.querySelector(selector).submit(); }, 7000);} var l = new URL(window.location.href); var enlace_principal = /zed.madshiba.fun|freetrx.fun|go.madshiba.fun|go2.madshiba.fun|test.madshiba.fun|tech.madshiba.fun|blog.madshiba.fun/; var enlace_principal2 = /wiki-topia.com|blog.wiki-topia.com|blog.insurancegold.in|claimtron.club|adlink.bitcomarket.net/; const getCookieValue = (name) => decodeURIComponent(document.cookie.match('(^|;)\\s*' + name + '\\s*=\\s*([^;]+)')?.pop() || ''); var Inp = getCookieValue('inp'); var Spcl = getCookieValue('spcl'); var elemento1 = document.querySelector(`input[value="${Spcl}"]`); if (l.host == 'blog.mdn.lol'){ if (document.querySelector('.g-recaptcha')){captcha_required('form');} else { document.querySelector('input[value=Continue]').click(); } } else { if (enlace_principal.test(l.host)) { var _name= 'countsdown'; } else if (enlace_principal2.test(l.host)) { _name = 'countdown'; } else if (l.host == 'blog.cryptowidgets.net') { _name = 'click'; } elemento1.setAttribute( 'name', _name + Inp); if (l.host == 'claim.fun'){ if (document.querySelector('.g-recaptcha')){captcha_required('form');} else {espera('form')} } else { espera('form') }}})();