Created
February 10, 2017 20:52
-
-
Save cnbeining/acd7164b48586da1c557793fda5080b4 to your computer and use it in GitHub Desktop.
Make Gayhub Great Again!
This file contains 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 Make Gayhub Great Again! | |
// @namespace https://github.com/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @match https://github.com/ | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
var element = document.getElementsByClassName("header-dark")[0]; | |
element.className = element.className.replace(/\header-dark\b/,''); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment