carefree fun1

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name        carefree fun1
// @namespace   Violentmonkey Scripts
// @match       *://blog.cryptowidgets.net/*
// @match       *://blog.insurancegold.in/*
// @match       *://blog.wiki-topia.com/*
// @match       *://blog.freeoseocheck.com/*
// @match       *://blog.coinsvalue.net/*
// @match       *://blog.cookinguide.net/*
// @match       *://blog.webfreetools.net/*
// @match       *://blog.greenenez.com/*
// @match       *://blog.coinscap.info/*
// @run-at      document-end
// @grant       none
// @version     2.4
// @author      sABER (juansi) Contribuciones via FaucetPay User: Crypto4Script
// @description Script de uso personal, adicional para pasar acortadores. Try to take over the world!
// ==/UserScript==

(function() { 'use strict';
  function buscar_boton_por_texto(texto) { return [...document.querySelectorAll('button')].find(btn => btn.textContent.includes(texto)); } // => no lo usamos por ahora
    function buscar_input_por_nombre(texto) { return [...document.querySelectorAll('input')].find(inp => inp.name.includes(texto)); }
      function go(a,b,c){ var d = buscar_input_por_nombre(a); var e = buscar_boton_por_texto(c); var f = document.querySelector('form'); if (d){ d.name = d.name.replace(a, b); f = d.form; } else { var inputs = f.elements; for (let i = 0; i < inputs.length; i++) { if (inputs[i].nodeName === "INPUT") { var inp = inputs[i].name; var val = inputs[i].value; inputs[i].name = b + val; inputs[i].value = inp; }}} window.setTimeout(() => { f.submit(); }, 10*1000);} // => puedes modificar este valor
        const lista_de_molestias = document.querySelectorAll('.holidAds,.col-sm-12.col-lg-3.col,li,div.form-group,.col-sm-12.col-lg-8.col,h1,h2,h3,h4,p,table.b,#w2g-slot1-cnt,#w2g-slot2-cnt,#w2g-slot3-cnt'); for (const element of lista_de_molestias) {element.remove();}
          var l = new URL(window.location.href);
           switch (l.hostname) {
             case 'blog.cryptowidgets.net': case 'blog.freeoseocheck.com':
             case 'blog.webfreetools.net': go('captcha', 'click', 'Continue'); break;
             case 'blog.insurancegold.in': case 'blog.wiki-topia.com':
             case 'blog.coinsvalue.net': case 'blog.cookinguide.net':
             case 'blog.greenenez.com': case 'blog.coinscap.info': go('captcha', 'countdown', 'Continue'); break;
             default: break;
                                }
             })();