Greasy Fork

Greasy Fork is available in English.

carefree fun

Snippet de uso personal, adicional para pasar acortadores. Try to take over the world!

当前为 2023-01-04 提交的版本,查看 最新版本

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==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/*
// @match       *://blog.mdn.lol/*
// @match       *://claimtron.club/*
// @match       *://adlink.bitcomarket.net/*
// @match       *://blog.freeoseocheck.com/*
// @match       *://blog.coinsvalue.net/*
// @match       *://blog.cookinguide.net/*
// @run-at      document-end
// @grant       none
// @version     1.6
// @author      sABER (juansi) Contribuciones via FaucetPay User: Crypto4Script
// @description Snippet de uso personal, adicional para pasar acortadores. Try to take over the world!
// ==/UserScript==
(function() {'use strict';
function captcha_required(selector) {const t= setInterval( function() { if (window.grecaptcha && !!window.grecaptcha.getResponse()) { document.querySelector(selector).submit(); clearInterval(t);}}, 5000);}
function espera(selector){window.setTimeout(function() { document.querySelector(selector).submit(); }, 5000);}
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 = /blog.cookinguide.net|blog.coinsvalue.net|blog.cryptowidgets.net|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.freeoseocheck.com') { _name = 'click'; }
elemento1.setAttribute( 'name', _name + Inp);
if (document.querySelector('.g-recaptcha')) { captcha_required('form'); } else { espera('form') }}})();