Greasy Fork is available in English.

Saltarse Todos los Enlaces Acortados

Saltarse Automáticamente todos los enlaces acortados, AdFly y omitir anuncios, ir directamente al destino, ahora se agregó descarga automática de archivos

< Opiniones de Saltarse Todos los Enlaces Acortados

Puntuación: Bueno; el script funciona tal y como promete

§
Publicado: 5/3/2023

hi bro, example link https://veganab.co/?link=aL4oxqA
this link redirecting and stays at the same point.

original shortlink https://link4earn.in/Evvdwj0
but it stuck in the middle..

§
Publicado: 7/3/2023

in firefox browser no issue , i don't know why in chrome just looping and no logs of error , so this time i don't have idea to fix it

§
Publicado: 8/3/2023

remove

'use strict'
BloggerPemula('veganab.co', 'link', 'https://techy.veganab.co/');

add

function when(domain, callback, ...arguments) {
const re_domain = new RegExp(domain)
if (!re_domain.test(location.host)) return;
// if (location.host in cfg) {
// return setTimeout(callback.bind(arguments), cfg[location.host] * 1000);
// }
return callback(arguments);
}

function BloggerPemula1(url) {
if (!url) return;
const link = url.replace(/\$(.*)/, (_, p) => searchParams.get(p) || _);
if (link === url) return;
when(location.href, redirect, link);
}
when('veganab.co', BloggerPemula1, 'https://techy.veganab.co/$link');

from my tests it works in chrome and firefox

§
Publicado: 8/3/2023

Así lo tengo yo en mi script BloggerPemula:

case 'studyis.xyz': _go(); break; (Esto lo tienes bien)
case 'veganab.co': crear_link('https://techy.veganab.co/' + h.searchParams.get('link')); break; (La función BloggerPemula lo cambias por meta)
case 'driveupload.net': referrer('https://upload.veganab.co/'); break; (Aquí agregas el referrer, tu sabes como)

Publicar respuesta

Inicia sesión para responder.