您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Bypass some shorteners
// ==UserScript== // @name Bypass some spanish link shorteners // @version 1.9 // @description Bypass some shorteners // @author Rust1667 // @match https://url2.acortalinks.net/#* // @match https://pedrangas.adfly.pro/#* // @match https://down.acortaz.eu/#* // @match https://adfly.mobi/api/?dads=1&urlb64=* // @match https://zeus.adfly.pro/#* // @match https://diamond.adfly.pro/#* // @match https://alinkt.com/short/val#* // @match https://www.programasvirtualespc.net/out/?* // @match *://gourlpro.com/o.php?l=* // @match *://c.gourlpro.com/#* // @match *://link.manudatos.com/#!* // @run-at document-start // @namespace https://gf.qytechs.cn/users/980489 // ==/UserScript== function base64Decode(input) { return atob(input); } function base64DecodeNTimes(string, times) { let decodedString = string; for (let i = 0; i < times; i++) { decodedString = base64Decode(decodedString); } return decodedString; } function base64DecodesUntilItGetsALink(str) { let decodedStr = base64Decode(str); if ( decodedStr.startsWith('http') || decodedStr.startsWith('magnet') ) { return decodedStr; } else { return base64DecodesUntilItGetsALink(decodedStr); } } function getDecodedURL() { var currentURL = window.location.href; if ( currentURL.match("url2.acortalinks.net/#") != null) { var encodedURL = currentURL.replace('https://url2.acortalinks.net/#', ''); var decodedURL = base64DecodesUntilItGetsALink(encodedURL); } if ( currentURL.match("pedrangas.adfly.pro/#") != null) { var encodedURL = currentURL.replace('https://pedrangas.adfly.pro/#', ''); var decodedURL = base64DecodeNTimes(encodedURL, 3); } if ( currentURL.match("zeus.adfly.pro/#") != null) { var encodedURL = currentURL.replace('https://zeus.adfly.pro/#', ''); var decodedURL = base64DecodeNTimes(encodedURL, 3); } if ( currentURL.match("diamond.adfly.pro/#") != null) { var encodedURL = currentURL.replace('https://diamond.adfly.pro/#', ''); var decodedURL = base64DecodeNTimes(encodedURL, 3); } if ( currentURL.match("alinkt.com/short/val#") != null) { var encodedURL = currentURL.replace('https://alinkt.com/short/val#', ''); var decodedURL = base64DecodeNTimes(encodedURL, 2); } if ( currentURL.match("down.acortaz.eu/#") != null) { var encodedURL = currentURL.replace('https://down.acortaz.eu/#', ''); var decodedURL = base64Decode(encodedURL); } if ( currentURL.match("adfly.mobi/api/?dads=1&urlb64=") != null) { var encodedURL = currentURL.replace('https://adfly.mobi/api/?dads=1&urlb64=', ''); var decodedURL = base64Decode(encodedURL); } if ( currentURL.match("https://www.programasvirtualespc.net/out/?") != null) { var encodedURL = currentURL.replace('https://www.programasvirtualespc.net/out/?', ''); var decodedURL = base64Decode(encodedURL); } if ( currentURL.match("//gourlpro.com/") != null) { var encodedURL = currentURL.replace('https://gourlpro.com/o.php?l=', ''); var decodedURL = base64DecodeNTimes(encodedURL, 5); } if ( currentURL.match("//c.gourlpro.com/") != null) { var encodedURL = currentURL.replace('https://c.gourlpro.com/#', ''); var decodedURL = base64DecodeNTimes(encodedURL, 3); } if ( currentURL.match("//link.manudatos.com/") != null) { var encodedURL = currentURL.replace('https://link.manudatos.com/#!', ''); var decodedURL = base64DecodeNTimes(encodedURL, 3); } return decodedURL } myDecodedURL = getDecodedURL() window.location.replace( myDecodedURL ); if (myDecodedURL.startsWith("magnet:?")) { alert(myDecodedURL); }
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址