您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
Bypass some shorteners
当前为
// ==UserScript== // @name Acortalinks.net bypasser // @version 1.0 // @description Bypass some shorteners // @author Rust1667 // @match https://url2.acortalinks.net/#* // @run-at document-start // @namespace http://greasyfork.icu/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; } var currentURL = window.location.href; var encodedURL = currentURL.replace('https://url2.acortalinks.net/#', ''); var decodedURL = tripleBase64Decode(encodedURL); window.location.replace( decodedURL );