您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Krunker.io top 1 hack 2019!
// ==UserScript== // @name Sportshot_YT Hack // @version 1.4 // @author Sportshot // @include /^(https?:\/\/)?(www\.)?(.+)krunker\.io(|\/|\/\?(game|server|party)=.+)$/ // @grant GM_xmlhttpRequest // @run-at document-start // @require https://code.jquery.com/jquery-3.3.1.min.js // @namespace gpy // @description Krunker.io top 1 hack 2019! // ==/UserScript== window.stop(); document.innerHTML = ""; // * * * * * * * * * * * * * * * * // * * * * * * * * * * * * * * * * const version = '1.3'; // * * * * * * * * * * * * * * * * // * * * * * * * * * * * * * * * * GM_xmlhttpRequest({ method: "GET", url: document.location.origin, onload: res => { let html = res.responseText; html = html.replace(/game\.[^\.]+\.js/, '____.js'); html = html.replace(/<script (type="text\/javascript"\s)?data-cfasync(.|\s)*?<\/script>/, `<meta name="gpy_version" content="${version}">`); GM_xmlhttpRequest({ method: "GET", url: document.location.origin + '/libs/zip.js', onload: res => { let zip = res.responseText; zip = zip.replace(/setInterval.*?\);/, ''); html = html.replace(/<script src="libs\/zip\.js.+"><\/script>/, `<script>${zip}</script>`) document.open(); document.write(html); document.close(); } }) } })