// ==UserScript== // @name Canine's Auto Clicker for Cookie Clicker // @namespace Cookie // @version 1 // @description Cookie Clicker Auto click // @include http://orteil.dashnet.org/cookieclicker/ // @include https://orteil.dashnet.org/cookieclicker/ // @grant none // @downloadURL none // ==/UserScript== (function() { setInterval(function() {Game.ClickCookie(); }, 0.00000001); })();