您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Redirects users from NitroType leaderboards to the working 3rd party leaderboards.
// ==UserScript== // @name Working LBs // @version 1.0 // @namespace https://discord.gg/nitrotype // @description Redirects users from NitroType leaderboards to the working 3rd party leaderboards. // @author jess // @match https://www.nitrotype.com/leaderboards // @license GNU Affero General Public License v3.0 // ==/UserScript== (function() { 'use strict'; // Redirect URL var redirectUrl = "https://ntleaderboards.onrender.com/"; // Redirects user window.location.replace(redirectUrl); })();