Guest

Full Screen Chat

By: a guest on Feb 27th, 2010  |  syntax: JavaScript  |  size: 1.73 KB  |  hits: 584  |  expires: Never
download  |  raw  |  embed  |  report abuse
Copied
  1. // ==UserScript==
  2. // @name           Full Chat
  3. // @namespace      FullChat
  4. // @description    Full screen chat! Go to http://www.kongregate.com/games/SavageWolf/chat once it is installed to use it!
  5. // @include        http://www.kongregate.com/games/SavageWolf/cha*
  6. // ==/UserScript==
  7.  
  8. //Created by SavageWolf (http://www.wolfthatissavage.com/)
  9.  
  10. dyns = [
  11.         "Cheese is yellow.",
  12.         "Something is better than something else.",
  13.         "Dream world will keep you playing it for YEARS!",
  14.         "I'm watching you...",
  15.         "Do not doubt the holy power of cows.",
  16.         "Kongregate has your soul.",
  17.         "There is a serial killer behind you.",
  18.         "If you copy this message to 5 games you can get 500 points!",
  19.         "God doesn't exist, sorry.",
  20.         "These are chosen randomly!",
  21.         "<code>THE ROBOTS SHALL RULE ONE DAY</code>",
  22.         "Muting is better than banning, do it.",
  23.         "You have amnesia."
  24. ];
  25.  
  26. document.getElementById("gameholder").innerHTML = "";
  27. document.getElementById("gameholder").style.width = "0px";
  28. document.getElementById("chat_container").style.width = "";
  29. document.getElementById("flashframecontent").getElementsByTagName("table")[0].style.width = "100%";
  30. document.getElementById("chat_tab_pane").style.width = "983px";
  31. document.getElementById("alert_tab_pane").style.width = "983px";
  32. document.getElementById("game_tab").style.display = "none";
  33. document.getElementById("more_games_tab").style.display = "none";
  34. document.getElementById("quicklinks").innerHTML = "<li class='first quicklinks'><span style='color:#777777'>Did you know? "+dyns[Math.ceil(Math.random()*dyns.length)-1]+"</span></li>";
  35. document.getElementsByTagName("title")[0].innerHTML = "Chat on Kongregate";
  36. document.getElementById("gamepage_header").getElementsByTagName("h1")[0].innerHTML = "<b>Chat</b>";