Skip to content

Instantly share code, notes, and snippets.

@thejspr
Created July 3, 2014 20:03
Show Gist options
  • Save thejspr/ad74baee1e6430cacc48 to your computer and use it in GitHub Desktop.
Save thejspr/ad74baee1e6430cacc48 to your computer and use it in GitHub Desktop.
Travis--
// ==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