Skip to content

Instantly share code, notes, and snippets.

@mklopets
Last active February 28, 2017 19:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mklopets/c66b330ba1aba8c2405f8280c4e8fd13 to your computer and use it in GitHub Desktop.
Save mklopets/c66b330ba1aba8c2405f8280c4e8fd13 to your computer and use it in GitHub Desktop.
future-proof fix for AWS status page (paste into your browser console when viewing AWS status page)
document.querySelectorAll('#current_events_block img').forEach(pic => { if (pic.getAttribute('src') === '/images/status0.gif') { pic.setAttribute('src', '/images/status3.gif'); } });
document.querySelectorAll('#current_events_block td').forEach(row => { if (row.innerHTML === 'Service is operating normally') { row.innerHTML = 'Everything is actually broken'; } })
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment