您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Bypass some shorteners
当前为
// ==UserScript== // @name Bypass some spanish link shorteners // @version 1.1 // @description Bypass some shorteners // @author Rust1667 // @match https://url2.acortalinks.net/#* // @match https://pedrangas.adfly.pro/#* // @run-at document-start // @namespace https://gf.qytechs.cn/users/980489 // ==/UserScript== function base64Decode(input) { return atob(input); } function tripleBase64Decode(encodedURL) { let decodedOnce = base64Decode(encodedURL); let decodedTwice = base64Decode(decodedOnce); let finalDecodedURL = base64Decode(decodedTwice); return finalDecodedURL; } function getDecodedURL() { var currentURL = window.location.href; if ( currentURL.match("url2.acortalinks.net") != null) { var encodedURL = currentURL.replace('https://url2.acortalinks.net/#', ''); var decodedURL = tripleBase64Decode(encodedURL); } if ( currentURL.match("pedrangas.adfly.pro") != null) { var encodedURL = currentURL.replace('https://pedrangas.adfly.pro/#', ''); var decodedURL = tripleBase64Decode(encodedURL); } return decodedURL } window.location.replace( getDecodedURL() );
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址