Created
July 3, 2014 20:03
-
-
Save thejspr/ad74baee1e6430cacc48 to your computer and use it in GitHub Desktop.
Travis--
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Travis-- | |
// @namespace thejspr.com | |
// @version 0.1 | |
// @description Removes some fuzz from the travis UI and improves it for large builds | |
// @match https://magnum.travis-ci.com/* | |
// @copyright 2014+, Jesper Kjeldgaard | |
// ==/UserScript== | |
$(document).ready(function(){ | |
$('#left').hide(); | |
$('#right #about').remove(); | |
$('#right .tip.box').remove(); | |
$('#right').css('font-size', '0.8em'); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment