// ==UserScript== // @name click all the cookies // @namespace http://tampermonkey.net/ // @version 1.2 // @description great beta cookie empire // @author gofi // @match http://orteil.dashnet.org/cookieclicker/beta/ // @require http://code.jquery.com/jquery-latest.js // @downloadURL none // ==/UserScript== /* jshint -W097 */ 'use strict'; var clickbigcookie = setInterval(function() { $('#bigCookie').trigger('click'); $('#goldenCookie').trigger('click'); }, 1);