Greasy Fork is available in English.

click the beta golden cookie

great beta cookie empire

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください。
  1. // ==UserScript==
  2. // @name click the beta golden cookie
  3. // @namespace http://tampermonkey.net/
  4. // @version 1
  5. // @description great beta cookie empire
  6. // @author gofi
  7. // @match http://orteil.dashnet.org/cookieclicker/beta/
  8. // @require http://code.jquery.com/jquery-latest.js
  9. // ==/UserScript==
  10. /* jshint -W097 */
  11. 'use strict';
  12.  
  13. var clickgoldencookies = setInterval(function() {
  14. $('#goldenCookie').trigger('click');
  15. }, 1);