Skip to main content

mods

Mods extend Cookie Clicker with automation, UI improvements, minigame helpers, custom content and quality‑of‑life tools. This page summarizes popular mod types, installation options, major community mods and common mod actions you’ll want to use or avoid.

Installing and managing mods

  • Manual (console/bookmarklet): Paste Game.LoadMod('') into the browser console after the game has loaded, or save that call as a bookmarklet. Many mod pages provide both a direct Game.LoadMod URL and a bookmarklet snippet.
  • Userscript managers: Use Tampermonkey / Greasemonkey to install mods as userscripts. A minimal userscript header must match the Cookie Clicker URL (https://orteil.dashnet.org/cookieclicker/).
  • Browser extensions: Community tools such as the unofficial Cookie Clicker Mod Manager add a UI to install and manage mods; their installation follows normal extension procedures.
  • Mod managers/collections: Some projects bundle multiple plugins (e.g., CUnleash, Cookie Clicker Mod Manager) so you can load several commonly used addons at once.

Warning: mods can change saves or leak data between saves. Some mods include "cheats" that alter saved values; back up your save before using them.

Major mod categories and representative mods

Calculators, purchase advisors and timers

  • Cookie Monster: Displays calculated values (payback period indexes) for buildings and upgrades, color-coded recommendations, timers for Golden Cookies and time until you can afford purchases. It helps choose optimal purchases using a PP formula (cost and ΔCpS).
  • Frozen Cookies: Automated toolset with purchase-efficiency calculations, autoclick options, Golden Cookie planning, Heavenly Chip timers, autoclicking wrinklers at optimal times, and other automation. Includes keyboard shortcuts and auto-update behavior.
  • Timer Widget: Shows remaining buff durations, time until next shimmer and other timers.

Automation and convenience

  • Cookie Clicker Helper / CUnleash / Crustulum: Lightweight automation scripts that can auto-click the big cookie, pop golden (and optionally wrath) cookies, auto-pop wrinklers, auto-click reindeer, and provide other convenience toggles. Crustulum includes many optional cheats; features are toggleable.
  • Golden Cookie Clicker: Simple script to autoclick Golden Cookies and reindeers.
  • Auto-trading / Idle Trading / CookiStocker / Cookie Stonks / Insugar Trading: Automate or assist the Stock Market minigame with buy/sell thresholds, historical tracking, resting-value displays and simple bots to manage trading for passive players.

Minigame helpers

  • Cookie Garden Helper / Agronomicon / Horticookie: Garden automation and helpers—auto-plant, auto-harvest, weed removal, mutation statistics and probabilities.
  • Fortune Cookie / Sweet Finder: Grimoire/spell planners that predict Grimoire outcomes, Golden Cookie chains, dragon drops and help farm Sugar Lumps via the Force the Hand of Fate spell.
  • Cookie Clicker Combo Execution Mod (CCCEM): Practice and execute Golden Cookie/Grimoire combos with customizable settings.
  • Dungeon / other minigame tweak scripts: Small scripts exist to alter dungeon speed or level for testing; these modify game object data.

Content and challenge mods

  • Just Natural Expansion: Late‑game overhaul that adds hundreds of achievements, upgrades and hidden stats designed to extend endgame progression. Nothing activates unless explicitly enabled.
  • Extra Content Mod (ECM): Adds numerous challenge achievements and grindy goals.
  • Custom achievements / Replace menu content: Mods can add achievements or replace UI images/assets using Game.Loader.Replace and custom achievement creation hooks.

Common mod features and console snippets

  • Loading a mod: Game.LoadMod('')
  • Autoclicking golden cookies (example): setInterval(function(){ Game.shimmers.forEach(s=>{ if(s.type=="golden") s.pop(); }); },500);
  • Spawn a golden cookie: var newShimmer = new Game.shimmer("golden");
  • Grant a buff directly: Game.gainBuff('', Math.ceil(*1), );
  • Replace static images: Game.Loader.Replace('perfectCookie.png','');
  • Toggle cosmetic/game flags: Game.PARTY = true (visual effects); Game.addClass("elderWrath") / Game.removeClass("elderWrath") to toggle grandma face on the big cookie.
  • Adjust FPS: Game.fps = — changing fps affects animation timing and can alter buff durations and golden cookie spawn timing; use with caution.

Cheat-style mods and risks

Some mods (Crustulum, Cookie Hax, various “hax” scripts) expose cheat features: infinite cookies, instant unlocks, forced minigame outcomes, or direct save changes. These are powerful for testing or challenge skipping but will modify persistent save data and can break achievements or expected progression. Always back up saves before using cheaty mods.

Development, making mods and safety tips

  • Userscript header: When creating a userscript for Cookie Clicker, include a header matching the game URL and @grant none.
  • Hooks/API: Mods commonly register create/check hooks, use Game.LoadMod, Game.RegisterHook and manipulate Game objects (Game.Upgrades, Game.Objects, Game.shimmers, Game.buffs, etc.).
  • Save compatibility: Mods can store data inside saves; importing a save that contains mod data can leak that data into the new profile. Remove mod data or avoid cross-saving between modded and unmodded saves to prevent contamination.
  • Debugging and editing: Use the browser console for quick changes (unlocking upgrades, forcing shops, adjusting timers). Many community pages list useful console snippets for testing or cosmetic tweaks.

Finding and using community mods

  • GitHub and hosted pages: Many mods are hosted on GitHub or dedicated pages; authors usually provide direct Game.LoadMod URLs and bookmarklets.
  • Install order: Some mods depend on a common library (e.g., CCSE — Cookie Clicker Script Extender). Read mod instructions; load dependencies first.
  • Compatibility: Mods that change UI or core calculations can conflict. If you encounter bugs, disable mods one-by-one to identify the culprit.
  • Backups and exports: Before installing experimental mods or running cheat scripts, export your save and keep copies so you can restore a known-good state.

Use mods to streamline repetitive tasks, plan long-term strategies, or add new challenges—just take care with cheat‑style features and save integrity.