Cookie Clicker Auto click
当前为
// ==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
// ==/UserScript==
(function() {
setInterval(function() {Game.ClickCookie(); }, 0.00000001);
})();