Bypass Tout Lien courts

Contourner tous les sites de liens courts saute automatiquement les raccourcisseurs de liens gênants, directement vers votre destination

< Commentaires sur Bypass Tout Lien courts

Avis: Bon - le script fonctionne correctement

§
Posté le: 05/03/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..

§
Posté le: 07/03/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

§
Posté le: 08/03/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

§
Posté le: 08/03/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)

Poster une réponse

Connectez-vous pour poster une réponse.