您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
https://neal.fun/stimulation-clicker 자동 클릭
// ==UserScript== // @name neal.fun 클리커 매크로 & 클리커 // @namespace neal.fun 클리커 매크로 & 클리커 // @match *://neal.fun/stimulation-clicker/ // @version 0.1 // @description https://neal.fun/stimulation-clicker 자동 클릭 // @author mickey90427 <[email protected]> // @license MIT // ==/UserScript== (function() { 'use strict'; let clicking = false; let frameId = null; // 토글 버튼 생성 const btn = document.createElement('button'); btn.innerText = '오토클릭 OFF'; btn.style.position = 'fixed'; btn.style.left = '10px'; btn.style.bottom = '10px'; btn.style.zIndex = 9999; btn.style.padding = '10px'; btn.style.backgroundColor = '#800'; btn.style.color = '#fff'; btn.style.border = 'none'; btn.style.borderRadius = '5px'; btn.style.cursor = 'pointer'; document.body.appendChild(btn); // 클릭 루프 함수 function clickLoop() { if (!clicking) return; const clickButton = document.querySelector('button.main-btn'); if (clickButton) clickButton.click(); frameId = requestAnimationFrame(clickLoop); } // 버튼 클릭 시 오토클릭 on/off btn.addEventListener('click', () => { clicking = !clicking; btn.innerText = clicking ? '오토클릭 ON' : '오토클릭 OFF'; btn.style.backgroundColor = clicking ? '#080' : '#800'; if (clicking) { clickLoop(); } else { cancelAnimationFrame(frameId); } }); })();