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

The Shadow Achievement "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

Cookie Bot

Cookie Bot is an addon you can load into Cookie Clicker, that will do an automatic playthrough for Cookie Clicker. It does not cheat (but see below) and it is not strictly speaking a third-party tool in the sense of cookie clicker, but it allows you to get all achievments needed for a complete playthrough.

The tool is designed to mimic a human player, and it avoids being super-human in terms of clicking speed and possible moves. This includes also not playing at night, i.e. from 23:00 until 07:00. For the night mode, if possible, the golden switch is used together with fitting spirits in order to maximize output.

Cookie Bot will start whereever you are in your game and continue to a complete playthrough. You can also run it as underlying boost and still play yourself.

Most recently updated version

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.016 (howver it runs with 2.019)

Helps with the statistics of the garden like:

  • Plant requirements for mutations
  • Probability in each tile

Link: https://bitbucket.org/Acharvak/cookie-clicker-agronomicon/

Heavenly Calculator

Note: Accuracy with current version unknown

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