simple cookie clicker cheat code
// ==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);
})();