您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Automagically presses buy/sell buttons on clicking bad!
// ==UserScript== // @name Clicking Bad Auto-Clicker // @namespace http://jslifesim.tk // @version 1.0 // @description Automagically presses buy/sell buttons on clicking bad! // @author andrew65952 // @match http://clickingbad.nullism.com/ // @grant none // ==/UserScript== (function() { 'use strict'; message("Clicking Bad Hacks Loaded! H-Cookies, J-Stop Cookies, I-Sell, K-Stop Sell"); window.addEventListener("keydown", hacker, false); var autocook; var autosell; function hacker(e) { if (e.keyCode == "72") { autocook = setInterval(function() { document.getElementById("make_btn").click(); },1000/200); message("Auto-Cook: Active"); } else if (e.keyCode == "74") { if (typeof autocook !== undefined) { clearInterval(autocook); message("Auto-Cook: Unactive"); } } else if (e.keyCode == "73") { autosell = setInterval(function() { document.getElementById("sell_btn").click(); }, 1000/200); message("Auto-Sell: Active"); } else if (e.keyCode == "75") { if (typeof autosell !== undefined) { clearInterval(autosell); message("Auto-Sell: Unactive"); } } } })();