Last active
February 11, 2017 04:30
-
-
Save Hube2/0d06f01b27bded0e9b25f6c83d2f582e to your computer and use it in GitHub Desktop.
Firefox Greasemonkey Github Remove Dark Headder and Bring Back Light Header
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
// ==UserScript== | |
// @name github | |
// @namespace YOURNAMESPACEHERE | |
// @description modify github bring back light header | |
// @include https://github.com/* | |
// @include https://gist.github.com/* | |
// @version 1 | |
// @grant none | |
// @require https://code.jquery.com/jquery-1.12.4.min.js | |
// ==/UserScript== | |
// get Greasmonkey at https://addons.mozilla.org/en-US/firefox/addon/greasemonkey/ | |
$('.header-dark').each(function(index, element){ | |
$(element).removeClass('header-dark'); | |
$(element).addClass('header-light') | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment