CookiesHackz

simple cookie clicker cheat code

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(У мене вже є менеджер скриптів, дайте мені встановити його!)

Advertisement:

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

Advertisement:

// ==UserScript==
// @name         CookiesHackz
// @namespace    http://tampermonkey.net/
// @version      2026-05-29
// @description  simple cookie clicker cheat code
// @author       You
// @match        *://orteil.dashnet.org/cookieclicker/*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        none
// ==/UserScript==

(function () {
    'use strict';

    var div = document.createElement('div');
    div.style = 'position:fixed;top:10px;right:10px;z-index:10000;background:rgba(0,0,0,0.8);padding:15px;color:white;border:2px solid #ccc;border-radius:10px;font-family:Arial;';
    div.innerHTML = '<h3>Cookie Cheat Menu</h3>';

    var btn1 = document.createElement('button');
    btn1.innerText = 'Add 2 trillion Cookies';
    btn1.onclick = function () {
        Game.cookies += 2000000000000;
        Game.earn(2000000000000);
    };
    div.appendChild(btn1);

    var btn2 = document.createElement('button');
    btn2.innerText = 'Add infinite Cookies!';
    btn2.onclick = function () {
        Game.cookies = Infinity;
    };
    div.appendChild(btn2);

    document.body.appendChild(div);

})();