beta cookie clicker

try to take over the world!

目前為 2016-02-06 提交的版本,檢視 最新版本

  1. // ==UserScript==
  2. // @name beta cookie clicker
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description try to take over the world!
  6. // @author Khdoop
  7. // @match http://orteil.dashnet.org/cookieclicker/beta/
  8. // @grant none
  9. // @require http://code.jquery.com/jquery-latest.js
  10. // ==/UserScript==
  11. /* jshint -W097 */
  12. 'use strict';
  13.  
  14.  
  15. $(function() {
  16. var testo = setInterval(function() {
  17. $('#bigCookie').trigger('click');
  18. $('#goldenCookie').trigger('click');
  19. }, 1);
  20. });