Created
June 18, 2019 18:35
-
-
Save nornagon/38baefe944c1be36ad6ce383ae75417a to your computer and use it in GitHub Desktop.
Make GitHub Checks UI readable
This file contains 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 GitHub Check Colors | |
// @version 1 | |
// @include https://github.com/* | |
// @grant none | |
// ==/UserScript== | |
for (const li of document.querySelectorAll('[data-channel^="check_runs:"] .container-md li')) { | |
if (/Failed/.test(li.textContent)) { | |
li.style.color = 'red' | |
} else if (/Success/.test(li.textContent)) { | |
li.style.color = 'green' | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment