此工具是用于解析迅雷链接真实地址及编码。 已更新为javascript版本 使用方法 1.解码迅雷:填写迅雷链接地址。完整的包含thunder://的地址 解码后的地址为: https://www.bobobk.com/favicon.ico function decodethun(){ var rawcode = document.querySelector("#de_thunder").value.substring(10); var decodedadd = window.atob(rawcode); var decodedadd = decodedadd.substring(2,decodedadd.length-2); document.querySelector('#decoded').innerHTML = decodedadd; } 2.编码迅雷:填写链接地址。编码后获得thunder://的地址 编码后的地址为……

阅读全文