Bigger Depth Chart - Fits 7 Players

By DaRealest Last update Jun 17, 2008 — Installed 478 times.
// ==UserScript==
// @name           Bigger Depth Chart - Fits 7 Players
// @namespace      GLB
// @description    This Depth Chart is bigger and set to fit 7 players (Original script by RandomBeast)
// @include        http://goallineblitz.com/game/depth_chart.pl?team_id=*
// ==/UserScript==

window.setTimeout( function() 
{

var dcbox= document.getElementById('position_players');

if (dcbox) {
    dcbox.style.height = "165px";
}


},100);