itsbfb / NBA TV Companion Enhancements

// ==UserScript==
// @name        NBA TV Companion Enhancements
// @description Extends "Play-by-Play" screen height (roughly doubles it)
// @version     0.1
// @author      itsb
// @oujs:author itsbfb
// @license     BSD
// @include     http://www.nba.com/tvc/index.html*
// @grant       none
// ==/UserScript==

var height = 500;
document.getElementById("playbyplay_screen_table_bg").style.height = height+'px';
document.getElementById("playbyplay_screen_table_bg").style.background = 'white';
document.getElementById("playbyplay_screen_table_holder").style.height = height+'px';
document.getElementById("playbyplay_screen_table").style.height = height-5+'px';
document.getElementsByClassName("jScrollPaneContainer")[0].style.height = height-5+'px';