Advertisement
Guest User

Normal Game Boards

a guest
Jul 22nd, 2014
599
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name        Normal Game Boards
  3. // @namespace   GameFAQsV13
  4. // @description Remove ugly sidebar and stretch game board back to full size.
  5. // @include     /http://www\.gamefaqs\.com/boards/[0-9][0-9]*/
  6. // @version     1.0
  7. // @grant       none
  8. // @author      Frost_shock_FTW
  9. // ==/UserScript==
  10.  
  11. var gameinfo_list = document.getElementsByClassName( 'pod_gameinfo' );
  12.  
  13. if( gameinfo_list.length > 0 ) {
  14.     // This is a game board with a bunch of crap on the right
  15.     gameinfo = gameinfo_list[0];
  16.     gameinfo_aside = gameinfo.parentNode;
  17.    
  18.     gameinfo_aside.hidden = true;
  19.     gameinfo_aside.previousSibling.className = 'span12';
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement