AutoClicker for Cookie Clicker

A simple script for cookie clicker that will autoclick cookies for you

  1. // ==UserScript==
  2. // @name AutoClicker for Cookie Clicker
  3. // @namespace http://tampermonkey.net/
  4. // @license sovietarctic777@outlook.com
  5. // @version 0.0.1
  6. // @description A simple script for cookie clicker that will autoclick cookies for you
  7. // @author You
  8. // @match http://sunset-nova-group.glitch.me/
  9. // @match https://orteil.dashnet.org/cookieclicker/
  10. // @match https://eli-schwartz.github.io/cookieclicker/
  11. // @match https://cookieclickercity.com/
  12. // @match https://sites.google.com/site/unblockedgames66ez/cookie-clicker
  13. // @match https://trixter9994.github.io/Cookie-Clicker-Source-Code/
  14. // @match https://www.tynker.com/community/projects/play/cookie-clicker-2/59a2f5655ae0295c7e8b4582/
  15. // @match https://watchdocumentaries.com/cookie-clicker-game/
  16. // @icon https://www.google.com/s2/favicons?sz=64&domain=google.com
  17. // @grant none
  18. // ==/UserScript==
  19.  
  20. (function() {
  21. 'use strict';
  22.  
  23. var autoclicker = setInterval(function(){
  24. try {
  25. Game.lastClick -= 1000;
  26. document.getElementById('bigCookie').click();
  27. } catch (err) {
  28. console.error('Stopping auto clicker');
  29. clearInterval(autoclicker);
  30. }
  31. }, 1);
  32. //Turn off the autoclicker
  33. onkeydown = function(e) {
  34. clearInterval(autoclicker);
  35. }
  36. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址