Skip to content

Instantly share code, notes, and snippets.

@devmessias
Last active February 12, 2017 02:03
Show Gist options
  • Save devmessias/47aa23a6ee19d9311d115c018c9d2728 to your computer and use it in GitHub Desktop.
Save devmessias/47aa23a6ee19d9311d115c018c9d2728 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name why github?
// @namespace http://brunomessias.com
// @include http://github.com/*
// @include https://github.com/*
// @include https://gist.github.com/*
// @version 1.0
// @description Removes the dark menubar from GitHub.
// @author devmessias
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.querySelector('.header-dark').classList.remove('header-dark');
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment