Last active
February 12, 2017 02:03
-
-
Save devmessias/47aa23a6ee19d9311d115c018c9d2728 to your computer and use it in GitHub Desktop.
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 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