AUTO CLICKER BOOKMARKLET

here is the bookmarklet that lets you autoclick. just underline the text below, drag it to your bookmarks bar or copy and paste it to your bookmarklets folder. then go to a website (cookie clicker) and click on the bookmarklet, and then left click on the thing you want to auto click on!

javascript:var DELAY = 1;var autoClickerStyleElement = document.createElement("style");autoClickerStyleElement.innerHTML="*{cursor: crosshair !important;}";document.body.appendChild(autoClickerStyleElement);function addClicker(e) {if(!e.isTrusted) {return;}if(e.target.classList.contains("auto-clicker-target")) {e.target.classList.remove("auto-clicker-target");} else {e.target.classList.add("auto-clicker-target");}document.body.removeChild(autoClickerStyleElement);document.body.removeEventListener("click", addClicker);e.preventDefault();autoClick(e.target);}function autoClick(element) {if(element.classList.contains("auto-clicker-target")) {element.click();setTimeout(function(){ autoClick(element); }, DELAY);}}document.body.addEventListener("click", addClicker, 0);
Powered by Soopr   •  Theme  Moonwalk