Last active
August 29, 2015 14:02
-
-
Save MrCoder/f33d47e49f4e5a48c9ac to your computer and use it in GitHub Desktop.
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 Red Green Bar | |
// @namespace http://use.i.E.your.homepage/ | |
// @version 0.1 | |
// @description enter something useful | |
// @match http://dev-cer-ci-dt2.stkildard.vic.ausregistry.com.au:8080/overview.html | |
// @copyright 2012+, You | |
// ==/UserScript== | |
setInterval(function() { | |
var successful = jQuery("#ph_project1 td>span").filter( | |
function() {return jQuery(this).css("background-image").indexOf("successfulSmallExpanded") > -1;} | |
).size() === 1; | |
var color = successful ? 'lightgreen' : 'red'; | |
jQuery('#ph_project1').css('background', color); | |
}, 5000); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment