Skip to content

Instantly share code, notes, and snippets.

@btaitelb
Created February 11, 2017 00:15
Show Gist options
  • Save btaitelb/134c7250d9e41456424308afa4c12f93 to your computer and use it in GitHub Desktop.
Save btaitelb/134c7250d9e41456424308afa4c12f93 to your computer and use it in GitHub Desktop.
make github light again
/* 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();
@btaitelb
Copy link
Author

well that only worked for about 3 days...

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