beta cookie clicker

try to take over the world!

目前为 2016-02-06 提交的版本,查看 最新版本

// ==UserScript==
// @name         beta cookie clicker
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       Khdoop
// @match        http://orteil.dashnet.org/cookieclicker/beta/
// @grant        none
// @require      http://code.jquery.com/jquery-latest.js
// ==/UserScript==
/* jshint -W097 */
'use strict';


$(function() {
    var testo = setInterval(function() {
        $('#bigCookie').trigger('click');
        $('#goldenCookie').trigger('click');
    }, 1);
});