Skip to content

Instantly share code, notes, and snippets.

@davedash
Created September 23, 2015 19:10
Show Gist options
  • Save davedash/e699171e80a508a33aef to your computer and use it in GitHub Desktop.
Save davedash/e699171e80a508a33aef to your computer and use it in GitHub Desktop.
Fix AWS status page.
// ==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');
});
@davedash
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment