您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Currently allows you to press 'z' to create account and 'x' to logout
// ==UserScript== // @name slay.one script account spam // @namespace https://slay.one/* // @version 1.03 // @description Currently allows you to press 'z' to create account and 'x' to logout // @author Meatman2tasty // @match https://slay.one/* // @grant none // ==/UserScript== //account spam// document.addEventListener("keydown", function(a) { // Press 'z' to create account if (a.keyCode == 90) { document.getElementById("inputUserName").value= Math.random().toString(36).substring(7); document.getElementById("inputUserEmail").value= Math.random().toString(36).substring(7) + "@mail.com"; document.getElementById("inputUserPass").value= "420"; setTimeout(registerAcc(0), 1000); apply4Clan("420z"); } }, false); document.addEventListener("keydown", function(a) { // Press 'x' to log out if (a.keyCode == 88) { setTimeout(logout(0), 1000); } }, false);