Greasy Fork

carefree fun

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

目前为 2022-06-25 提交的版本。查看 最新版本

// ==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/*
// @run-at      document-end
// @grant       none
// @version     1.0
// @author      you
// @description Snippet de uso personal, adicional para pasar acortadores. Try to take over the world!
// ==/UserScript==
(function() {
    'use strict';
var l = new URL(window.location.href);
var enlace_principal = /freetrx.fun|go.madshiba.fun|go2.madshiba.fun|test.madshiba.fun|tech.madshiba.fun|claim.fun|blog.madshiba.fun/;
var element = document.querySelector('input[type="submit"]');
var grr = document.querySelector('#wait').innerText;
          if (enlace_principal.test(l.host)) {
              if (grr === 'Complete the captcha!') {
                 if (element) { var temp= setInterval( function() { if (window.grecaptcha && !!window.grecaptcha.getResponse()) {
                               element.click(); clearInterval(temp);}}, 5000);}
              } else { if (element) { window.setTimeout(function() { element.click();}, 5000);}}} 
 })();