Created
September 23, 2015 19:10
-
-
Save davedash/e699171e80a508a33aef to your computer and use it in GitHub Desktop.
Fix AWS status page.
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 Fix AWS Status | |
// @namespace http://davedash.com/ | |
// @version 0.1 | |
// @description Fix the status icons so they are more obvious | |
// @author Dave Dash | |
// @match http://status.aws.amazon.com/ | |
// @require http://code.jquery.com/jquery-latest.js | |
// ==/UserScript== | |
$('img[src="/images/status1.gif"]').each(function () { | |
$(this).attr('src', 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT0H1zK3-2cOv4ABMOd1s1lDdnyaDCRu9a6TqEgQenoZ3lvzU4A'); | |
}); |
Author
davedash
commented
Sep 23, 2015
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment