NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Localhost Grader Branch
// @namespace http://use.i.E.your.homepage/
// @version 0.1
// @noframes
// @description enter something useful
// @match http://localhost/*
// @copyright 2012+, You
// ==/UserScript==
//Check if it's the grader branch, and change colors if it is
var title = $( '.lsTitle' ).text();
if ( title === "BYULS GRADER" ) {
console.log( "grader" );
GM_addStyle( '.lsTitle {color: yellow!important;}' );
//GM_addStyle('body > header {background-image: none; background-color: #303750; border: 1px solid #303750;}');
}