Παράκαμψη Ολα Σύντομοι σύνδεσμοι

Παράκαμψη όλων των ιστότοπων με σύντομες συνδέσεις, παρακάμπτει αυτόματα ενοχλητικούς συντομευτές συνδέσμων, πηγαίνει απευθείας στον προορισμό σας, παρακάμπτει το AdFly, παρακάμπτει ενοχλητικές διαφημίσεις, αποκλείει την ανίχνευση αποκλεισμού διαφημίσεων, αποκλείει ενοχλητικά αναδυόμενα παράθυρα και μηνύματα, κάνει αυτόματη λήψη αρχείων και βίντεο Youtube και πολλά άλλα

< Σχολιασμός για τον κώδικα Παράκαμψη Ολα Σύντομοι σύνδεσμοι

Αναφορά: Καλός - ο κώδικας λειτουργεί

§
Δημοσιεύτηκε: 14/01/2022

Thanks for this script. Going directly to the final link does not work in crazyblog.in, I had already made my own script but it gave me an error: PLEASE FOLLOW ALL THE STEPS TO GET HERE.

§
Δημοσιεύτηκε: 14/01/2022

try this
const form = document.getElementById('wpsafelink-landing')
window.location = JSON.parse(atob(form.newwpsafelink.value)).linkr)

bloggerpemulaΔημιουργός
§
Δημοσιεύτηκε: 14/01/2022

Thanks for this script. Going directly to the final link does not work in crazyblog.in, I had already made my own script but it gave me an error: PLEASE FOLLOW ALL THE STEPS TO GET HERE.

i don't have problems with crazyblog.in all working perfectly for me , what is your browser ? and the shortlink come from which site you get the problem ? i will check it

bloggerpemulaΔημιουργός
§
Δημοσιεύτηκε: 15/01/2022

Please update to the latest version

§
Δημοσιεύτηκε: 16/01/2022

You have probably some ad skip script installed. Crazyblog probably changed the destination URL, that's why you see the error message. Wait until the ad skip script is updated, or let the author of the script know about the changes.

§
Δημοσιεύτηκε: 16/01/2022

Please update to the latest version

CBShort is the one with the problem. I had to deactivate the "else if" of the "case" crazyblog.in corresponding to cbs.trxking.xyz of your script and now it happens normally.
I'm sorry I don't speak English this is translated with google

// } else if (h.pathname === '/harsh/verify/' && /^\?([^&]+)/.test(h.search)) { return 'https://cbs.trxking.xyz/' + RegExp.$1;

§
Δημοσιεύτηκε: 13/03/2022

He desactivado esto:
// case 'mcrypto.club': if (h.pathname === '/' && h.searchParams.has('link')) {return 'https://coinsparty.com/' + h.searchParams.get('link'); } else if (/^\/coinsparty\/([^/]+)/.test(h.pathname)) {return 'https://coinsparty.com/' + RegExp.$1;}break;
Actualiza porque causa error al obtener el link incorrectamente.

bloggerpemulaΔημιουργός
§
Δημοσιεύτηκε: 14/03/2022

por favor, dame un ejemplo de enlace corto, porque no veo ningún error allí

§
Δημοσιεύτηκε: 14/03/2022
bloggerpemulaΔημιουργός
§
Δημοσιεύτηκε: 14/03/2022

para mí, ese enlace redirige al enlace correcto https://coinsparty.com//BBvcoou9, luego resolvemos el captcha

bloggerpemulaΔημιουργός
§
Δημοσιεύτηκε: 14/03/2022

cual es tu navegador ?

§
Δημοσιεύτηκε: 14/03/2022
Επεξεργάστηκε: 14/03/2022

si ahora pasa correctamente. pero hace unas horas no lo hacia. disculpa me fijare despues con otros enlaces, y te aviso. gracias

editado
Aca encontre el enlace
https://mcrypto.club/?link=ca/qot5yj
el problema esta ahi en el link, lo ves, la barra invertida proboca el error.

bloggerpemulaΔημιουργός
§
Δημοσιεύτηκε: 14/03/2022

si ahora pasa correctamente. pero hace unas horas no lo hacia. disculpa me fijare despues con otros enlaces, y te aviso. gracias

oh ok , intenta buscarlo desde el historial de tu navegador

bloggerpemulaΔημιουργός
§
Δημοσιεύτηκε: 14/03/2022

por cierto me gusta hablar español porque tengo amigos en chile

§
Δημοσιεύτηκε: 14/03/2022
Επεξεργάστηκε: 14/03/2022

por cierto me gusta hablar español porque tengo amigos en chile

Que bueno que te guste hablar en español, yo soy de Argentina, cerca de Chile. Fijate en el enlace de arriba. Mi navegador es Brave.
Los link son de Cryptoads /ca y Coinsurl /cu los que causan problemas.

§
Δημοσιεύτηκε: 14/03/2022

You have probably some ad skip script installed. Crazyblog probably changed the destination URL, that's why you see the error message. Wait until the ad skip script is updated, or let the author of the script know about the changes.

§
Δημοσιεύτηκε: 14/03/2022

Lo solucione momentaneamente con esto
case 'mcrypto.club':
var path = h.searchParams.get('link').substring(0,3);
if (path == 'ca/') { return 'https://cryptoads.space/' + h.searchParams.get('link').substring(3); }
else if (path == 'cu/') { return 'https://coinsurl.com/' + h.searchParams.get('link').substring(3); } break;
Fijate vos de hacerlo bien en tu script.

§
Δημοσιεύτηκε: 14/03/2022

case 'mcrypto.club':
var path = h.searchParams.get('link').substring(0,3);
if (path == 'ca/') { return 'https://cryptoads.space/' + h.searchParams.get('link').substring(3); }
else if (path == 'cu/') { return 'https://coinsurl.com/' + h.searchParams.get('link').substring(3); }
else if (h.searchParams.get('link').substring(0,1) == '/') { return 'https://coinsparty.com/' + h.searchParams.get('link').substring(1); } ;break;

bloggerpemulaΔημιουργός
§
Δημοσιεύτηκε: 15/03/2022

case 'mcrypto.club':
var path = h.searchParams.get('link').substring(0,3);
if (path == 'ca/') { return 'https://cryptoads.space/' + h.searchParams.get('link').substring(3); }
else if (path == 'cu/') { return 'https://coinsurl.com/' + h.searchParams.get('link').substring(3); }
else if (h.searchParams.get('link').substring(0,1) == '/') { return 'https://coinsparty.com/' + h.searchParams.get('link').substring(1); } ;break;

Muchas gracias, probé este código que funciona para todos los modelos. y lo he aplicado en la última versión

Δημοσίευση απάντησης

Συνδεθείτε για να δημοσιεύσετε μια απάντηση.