您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Snippet de uso personal, adicional para pasar acortadores. Try to take over the world!
当前为
// ==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);}}} })();