// ==UserScript== // @name carefree fun // @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/* // @run-at document-end // @grant none // @version 1.4 // @author sABER (juansi) // @description Snippet de uso personal, adicional para pasar acortadores. Try to take over the world! // @downloadURL none // ==/UserScript== (function() {'use strict'; 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|claim.fun|blog.madshiba.fun/; 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 (enlace_principal.test(l.host)) { elemento1.setAttribute( 'name', 'countsdown' + Inp);} else { elemento1.setAttribute( 'name', 'countdown' + Inp);} window.setTimeout(function() { document.querySelector('form').submit(); }, 12000);})();