Mod Menu V2

This is a simple mod menu that can be used to change the game's settings.

  1. // ==UserScript==
  2. // @name Mod Menu V2
  3. // @version 0.1
  4. // @description This is a simple mod menu that can be used to change the game's settings.
  5. // @author Caiden
  6. // @match https://orteil.dashnet.org/cookieclicker/*
  7. // @grant none
  8. // @namespace https://gf.qytechs.cn/users/1086912
  9. // ==/UserScript==
  10.  
  11. (function() {
  12.  
  13. // Create the mod menu element.
  14. var modMenu = document.createElement("div");
  15. modMenu.id = "mod-menu";
  16.  
  17. // Add some buttons to the mod menu.
  18. var button1 = document.createElement("button");
  19. button1.textContent = "God Mode";
  20. button1.onclick = function() {
  21. // Do something when the "God Mode" button is clicked.
  22. };
  23.  
  24. var button2 = document.createElement("button");
  25. button2.textContent = "Noclip";
  26. button2.onclick = function() {
  27. // Do something when the "Noclip" button is clicked.
  28. };
  29.  
  30. // Add the buttons to the mod menu.
  31. modMenu.appendChild(button1);
  32. modMenu.appendChild(button2);
  33.  
  34. // Append the mod menu to the document.
  35. document.body.appendChild(modMenu);
  36.  
  37. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址