Skip to content

Instantly share code, notes, and snippets.

@Hube2
Last active February 11, 2017 04:30
Show Gist options
  • Save Hube2/0d06f01b27bded0e9b25f6c83d2f582e to your computer and use it in GitHub Desktop.
Save Hube2/0d06f01b27bded0e9b25f6c83d2f582e to your computer and use it in GitHub Desktop.
Firefox Greasemonkey Github Remove Dark Headder and Bring Back Light Header
// ==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