您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
better simple popcat cheat
// ==UserScript== // @name Popcat.click // @namespace http://tampermonkey.net // @version 5x 2.12 // @description better simple popcat cheat // @author 7X12 // @match https://popcat.click/* // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; let intervalId = null; // Create the custom keyboard event var event = new KeyboardEvent('keydown', { key: 'g', ctrlKey: true }); // Function to start the interval of Ctrl+G key presses function startCtrlG() { intervalId = setInterval(function() { for (let i = 0; i < 5; i++) { document.dispatchEvent(event); // press start } }, 50); // Adjusted interval to 50 milliseconds } // Function to stop the interval function stopCtrlG() { if (intervalId !== null) { clearInterval(intervalId); intervalId = null; } } // Create toggle buttons to start/stop the simulation var toggleButton = document.createElement('button'); toggleButton.textContent = 'Start 5x'; toggleButton.style.position = 'fixed'; toggleButton.style.top = '10px'; toggleButton.style.left = '10px'; toggleButton.style.zIndex = '9999'; toggleButton.style.padding = '10px'; toggleButton.style.fontSize = '16px'; toggleButton.addEventListener('click', function() { if (intervalId === null) { startCtrlG(); toggleButton.textContent = 'Stop 5x'; } else { stopCtrlG(); toggleButton.textContent = 'Start 5x'; } }); document.body.appendChild(toggleButton); })();