Bypass All Shortlinks

Bypass All Shortlinks Sites Automatically Skips Annoying Link Shorteners , Skip AdFly and No Annoying Ads, Directly to Your Destination, and now Support Auto Downloading Your Files

< Feedback on Bypass All Shortlinks

Review: Good - script works

§
Posted: 2023-03-05

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..

§
Posted: 2023-03-07

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

§
Posted: 2023-03-08

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

§
Posted: 2023-03-08

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)

Post reply

Sign in to post a reply.