window.realSetTimeout = window.setTimeout; window.setTimeout = function(f, t) { if (t == 800) { window.redirect = true; return } realSetTimeout(f, t) } document.addEventListener("DOMContentLoaded", function() { if (!window.redirect) { return } document.getElementsByTagName("h1")[0].remove() const element = document.createElement("img") element.setAttribute("src", "/.markiplier/markiplier-fire.gif") document.getElementById("box").prepend(element) })