CheatInterface

Cookie clicker cheast

  1. // ==UserScript==
  2. // @name CheatInterface
  3. // @namespace Cookie
  4. // @include https://trixter9994.github.io/Cookie-Clicker-Source-Code/
  5. // @version 1
  6. // @description Cookie clicker cheast
  7. // @grant none
  8. // ==/UserScript==
  9. var oldOnload = window.onload;
  10. window.onload = function () {
  11. oldOnload();
  12. var script = document.createElement('script');
  13. script.setAttribute('src', 'Game.OpenSesame();');
  14. document.body.appendChild(script);
  15. }