Skip to content

Instantly share code, notes, and snippets.

@jcppkkk
Last active September 30, 2023 15:49
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jcppkkk/6409139 to your computer and use it in GitHub Desktop.
Save jcppkkk/6409139 to your computer and use it in GitHub Desktop.
Cookie clicker assistant (Bookmarklet) store the code as a bookmark, then click it when you are in Cookie clicker.
javascript: (function () {
function loadScript(b, c) {
var a = document.createElement("script");
a.type = "text/javascript";
if (a.readyState) {
a.onreadystatechange = function () {
if (a.readyState == "loaded" || a.readyState == "complete")
{a.onreadystatechange = null; c() } }
} else {a.onload = function () {c() } } a.src = b;
document.getElementsByTagName("head")[0].appendChild(a)
}
loadScript("//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js", function () {
loadScript("//pastebin.com/raw.php?i=2KRNm8Gm", function () {
loadScript("//raw.github.com/jcppkkk/Cookie-Clicker-Highlighter/master/cookie-highlighter.js", function () {})
})
});
})();
@jcppkkk
Copy link
Author

jcppkkk commented Sep 11, 2013

https://gist.github.com/jcppkkk/6522576
Load Cookie Monster and Highlighter

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment