您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Remove donutteam saftey tunnel
// ==UserScript== // @name Bypass DT safety tunnel // @namespace stonerteam // @version 0.1 // @description Remove donutteam saftey tunnel // @author The StonerTeam // @include http*://tunnel.donutteam.com* // @icon https://stoner.team/favicon.png // @grant none // @license GPL3 // ==/UserScript== // Get tunnels paremeters const queryString = window.location.search; const urlParams = new URLSearchParams(queryString); // Get and decode URI const url = urlParams.get('url'); const decodedUrl = decodeURI(url); //Redirect window.location.replace(decodedUrl);