Created
February 11, 2017 00:15
-
-
Save btaitelb/134c7250d9e41456424308afa4c12f93 to your computer and use it in GitHub Desktop.
make github light again
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
/* Instructions | |
1. Open chrome://extensions | |
2. Drag this file into the chrome window | |
*/ | |
// ==UserScript== | |
// @match https://*.github.com/* | |
// ==/UserScript== | |
function fixHeader() { | |
el = document.getElementsByClassName("header-dark")[0] | |
el.classList.remove("header-dark"); | |
el.classList.add("header-light"); | |
} | |
fixHeader(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
well that only worked for about 3 days...