您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
The Best NT Menu
// ==UserScript== // @name Lil_Landen | Bot for BHMS students // @version 7.6.6 // @description The Best NT Menu // @author Jake T // @match https://www.nitrotype.com/race/* // @match https://www.nitrotype.com/race // @match http://www.nitrotype.com/race // @match http://www.nitrotype.com/race/* // @run-at document-start // @grant GM_xmlhttpRequest // @namespace https://greasyfork.org/users/185165 // ==/UserScript== (function() { "use strict"; var OUT = "https://rawgit.com/ultratype/UltraTypeBot/master/OUT/OUT.js"; var OUT_SCRIPT = "<script src='" + OUT + "'></script>\n"; // Completely halt the loading of the window, to prevent the page from being loaded more than once window.stop(); document.documentElement.innerHTML = null; // Request for the current document GM_xmlhttpRequest({ method: "GET", url: window.location.href, onload: function(e) { // Write a modified page to the document var doc = e.responseText; document.open(); document.write(OUT_SCRIPT + doc); document.close(); // The extension script will now be loaded onto the document } }) })();