Greasy Fork

Auto Cookie Clicker

Autoclicks the Cookie and gets you easy Cookies!

当前为 2021-03-22 提交的版本,查看 最新版本

// ==UserScript==
// @name         Auto Cookie Clicker
// @namespace    https://waa.ai/spinpy
// @version      1.0
// @description  Autoclicks the Cookie and gets you easy Cookies!
// @author       Spinfal
// @match        http://orteil.dashnet.org/cookieclicker/
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    function click() {
        setInterval(function() { document.getElementById('bigCookie').click() }, 0);
    }

    if (confirm('start autoclicker?')){
        click();
    }
})();