您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Adds a personal test mode to Stimulation Clicker for experimenting with click speeds and stimulation scaling.
// ==UserScript== // @name Stimulation Clicker Enhancer // @namespace kaizenclickerenhancer // @license MIT // @version 1.1 // @author Kaizenfrfr // @description Adds a personal test mode to Stimulation Clicker for experimenting with click speeds and stimulation scaling. // @match https://neal.fun/stimulation-clicker/* // @grant none // ==/UserScript== (function() { 'use strict'; function tryHook() { const container = document.querySelector('.container'); if (!container || !container.__vue__) return false; const vueState = container.__vue__.stimulation === undefined ? container.__vue__.$children.find(child => child.stimulation !== undefined) : container.__vue__; if (!vueState || typeof vueState.addStimulation !== 'function') return false; // Save original addStimulation const originalAddStim = vueState.addStimulation; // Replace with scaled version vueState.addStimulation = function(amount) { return originalAddStim.call(this, amount * 1000); // scale factor ×1000 for testing }; // Auto-click loop (adjustable for experiments) setInterval(() => { vueState.onMainClick(); }, 1); // 1ms loop console.log('[StimClick] Enhancement hooked successfully!'); return true; } // Keep trying until Vue state is ready const waitVue = setInterval(() => { if (tryHook()) clearInterval(waitVue); }, 500); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址