TOL Text Field Fix

This script increases the size of the text fields in Time Online, or TOL - Booz Allen Hamilton's web-based time reporting program

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name        TOL Text Field Fix
// @namespace   tol.bah.com/main.cfm
// @description This script increases the size of the text fields in Time Online, or TOL - Booz Allen Hamilton's web-based time reporting program
// @include     https://tolconnected.bah.com/*
// @include		https://tol.bah.com/*
// @include		https://sso.bah.com/*
// @include		https://access.bah.com/*
// @grant       none
// @version     1
// ==/UserScript==
if( document.title == 'Time Sheet' ) {
	var elems = document.getElementsByTagName('input'), i;
	for (i in elems) {
		if((' ' + elems[i].className + ' ').indexOf(' tolwksheet ') > -1) {
			elems[i].style.width=35;
		}
	}
}