// ==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 // @downloadURL none // ==/UserScript== /* jshint -W097 */ 'use strict'; $(function() { var testo = setInterval(function() { $('#bigCookie').trigger('click'); $('#goldenCookie').trigger('click'); }, 1); });