Vanilla is a product of Lussumo. More Information: Documentation, Community Support.
// ==UserScript==
// @name Intervals Lean
// @namespace Intervals
// @description Maximizes overall viewing area of Intervals. Also contains some
// @version 0.1
// @include https://*.intervalsonline.com/*
// @include https://*.projectaccount.com/*
// @include https://*.timetask.com/*
// ==/UserScript==
var style = "";
style+= "div#container { padding-top: 0; }";
style+= "div#brandCell, div#globalIconCell { padding-bottom: 0; }";
style+= "td.noteLeft img { display: none; } ";
style+= "div#allLeft { background: none; padding-left: 0 } ";
style+= "div#allRight { background: none; padding-right: 0 } ";
style+= "div#all { margin: 0 } ";
style+= "div#allFooter { display:none; ";
style+= "body { background: #fff; } ";
style+= "table.newTable { width: 100%; } ";
var head=document.getElementsByTagName("HEAD")[0];
var el=window.document.createElement('link');
el.rel='stylesheet';
el.type='text/css';
el.href='data:text/css;charset=utf-8,'+escape(style);
head.appendChild(el);
1 to 1 of 1