End the World

By Ben Lowery Last update Sep 12, 2008 — Installed 22 times. Daily Installs: 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0
// ==UserScript==
// @name           End the World
// @namespace      blowery.org
// @description    Ends the world.
// @include        http://hasthelargehadroncolliderdestroyedtheworldyet.com/*
// ==/UserScript==

function update(t) {
  return function(){
    document.getElementById("main").innerHTML = t;
  };
}

window.addEventListener("load", function(e){
			  setTimeout(update("Hold on..."), 1000);
			  setTimeout(update("Oh shit."), 3000);
			  setTimeout(update("YUP."), 4000);
			}, false);