您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
7/29/2023, 8:52:32 PM
// ==UserScript== // @name New script - gota.io // @namespace Violentmonkey Scripts // @match https://gota.io/web/ // @grant none // @version 1.0 // @author - // @description 7/29/2023, 8:52:32 PM // ==/UserScript== let intervalId = null; function processKeyPress() { const playerName = document.querySelector("#context-name").innerText; // Mostrar el nombre del jugador en la consola console.log("Nombre del jugador:", playerName); document.querySelector("#menu-pu_pr").click(); } document.addEventListener("keydown", function(event) { if (event.key === "Y" || event.key === "y") { if (!intervalId) { intervalId = setInterval(processKeyPress, 1000); // Repetir cada 1000 ms (1 segundo) } else { // Detener el proceso si ya está en ejecución clearInterval(intervalId); intervalId = null; } } });
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址