AUtoclicker bookmarklet

Welcome to the "auto-clicker" page! this will allow you to auto-click on any website. To enable the auto-clicker simply click on the bookmarklet you should have a different cursor just click on the place you want it to auto-click and your'e done. to install this bookmarklet Drag the code below into the bookmark bar if you can't see that than press CTRL+SHIFT+B.


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);