Cookie Clicker Wiki
Advertisement

There are numerous add-ons for Cookie Clicker that can be added via javascript bookmarks or through your browser console. To open your browser's console, see the instructions here.

File:Third party-0.png

Third party icon.

Cookie Monster

Cookie Monster is a useful and complex JavaScript add-on that can be implemented into Cookie Clicker. This add-on is for displaying calculated data to help make purchasing that next Building or Upgrade a bit easier to decide. With many helpful tools, it is an add-on to make Cookie Clicker a little less stressful.

This add-on contains:

  • A timer and alert for golden or wrath cookies
  • Color coded tooltips to recommend what buildings or upgrades you would get the most profit off of
  • A timer based off of your CpS to count how long until you can buy a building.
  • more

Made by Raving Kumquat

Most recently updated version

Crustulum

Crustulum is a cheating add-on for Cookie Clicker. It has toggleable features to automate many of the tasks from the cheating page as well as features not listed on there. All features can be toggled independently.

A few features include:

  • Auto clicking the big cookie, golden cookies, etc.
  • Make Grimoire spells never fail.
  • Make it so plants don't wither.
  • Infinite cookies, magic, etc.
  • Many mini-game related cheats.
  • Spawn golden cookies, etc.
  • Unlock all seeds for the garden, etc.
  • Compatible with Cookie Monster.

Link: https://github.com/Ancyker/Crustulum

Frozen Cookies

Heads Up: Frozen Cookies is not Compatible with 2.016 yet

Frozen Cookies Note: Has Been Forked Confirmed Working as of v2.0045

The add-on adds:

  • Long number shortening. (convert 1,234,567,890 to 1.235 billion)
  • Calculates the most efficient next purchase.
  • Optionally, will automatically buy that most efficient next purchase.
  • Calculates all sorts of stuff having to do with Golden Cookies.
  • Optionally, will automatically click Golden Cookies when they appear.
  • Calculates all sorts of stuff having to do with Heavenly Chips.
  • More

Agronomicon

Latest version is 2.022

Helps with the statistics of the garden like:

  • Plant requirements for mutations
  • Probability in each tile
  • Probability in the entire garden

Link: https://github.com/Acharvak/Cookie-Clicker-Agronomicon

Fortune Cookie

Fortune Cookie is an add-on which shows the outcomes of all of the Grimoire spells. It it most useful for the Force the Hand of Fate spell, making it easy to combo Golden Cookie effects. It is also useful for farming Sugar Lumps with the "Sweet" Golden Cookie, which can be seen with the Force the Hand of Fate planner. In the options menu, there is a slider which lets the player set how many spells they want to predict, going up to 100 spells to be predicted. 

Link: https://klattmose.github.io/CookieClicker/FortuneCookie.js

Cookie Garden Helper

Cookie Garden Helper is an add-on to help with and automate gardening in Cookie Clicker.

Link: https://github.com/yannprada/cookie-garden-helper

Heavenly Calculator

Note: Still functional, but doesn't support Heavenly Cookie amounts larger than 2,147,483,647

Heavenly Calculator is an application to help you with your prestiges. It can calculate the amount of Heavenly Chips you will get when reset, and the amount of Cookies needed to earn a certain number of Heavenly Chips.

Made by Razieltakato

Most recently updated version

Shortcuts add-on

This small add-on adds keyboard shortcuts to make it easier to load other add-ons and switch between menus.

M = Open Main menu.

S = Open Stats menu.

U = Open Updates menu.

F = Load Frozen Cookies add-on or open its menu, if it's loaded.

C = Load Cookie Monster add-on.

Note that this add-on will only allow you to load 1 other add-on because they can conflict with each other.

To enable this add-on make a bookmark with this code

 javascript:( function () {
 	window.one = 0;
 	window.two = 0;
 	window.three = 0;
 	function Sorry() {
 		Game.Notify("You can't enable another add-on (except of Cookie Crate). Sorry.");
 	}
 	function Press(e) {
 		var l = String.fromCharCode(e.which).toLowerCase();
 		if (l == 'm' || l == 'ь')
 			Game.ShowMenu('prefs');
 		else if (l == 's' || l == 'ы')
 			Game.ShowMenu('stats');
 		else if (l == 'u' || l == 'г')
 			Game.ShowMenu('log');
 		else if (l == 'f' || l == 'а') {
 			if (window.one == 0) {
 				var js = document.createElement('script');
 				js.setAttribute('type', 'text/javascript');
 				js.setAttribute('id', 'frozenCookieScript');
 				js.setAttribute('src', 'http://icehawk78.github.io/FrozenCookies/frozen_cookies.js<nowiki/>');
 				document.head.appendChild(js);
 				window.one = 'f';
 			}
 			else if (window.one != 'f')
 				Sorry();
 			else
 				Game.ShowMenu('fc_menu');
 		}
 		else if (l == 'c' || l == 'с') {
 			if (window.one == 0) {
 				Game.LoadMod('http://aktanusa.github.io/CookieMonster/CookieMonster.js<nowiki/>');
 				window.one = 'c';
 			}
 			else if (window.one != 'c')
 				Sorry();
 		}
 	}
 	document.onkeypress = Press;
 	Game.Notify('Shortcuts enabled');
 }());
Advertisement