Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save jimmytheneutrino/bb5e8642280eabc508c5edf3f61464b3 to your computer and use it in GitHub Desktop.

Select an option

Save jimmytheneutrino/bb5e8642280eabc508c5edf3f61464b3 to your computer and use it in GitHub Desktop.
Tampermonkey script for normal (white) github header
// ==UserScript==
// @name New Userscript
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://*.github.com/*
// @require http://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js
// @grant GM_addStyle
// ==/UserScript==
(function() {
'use strict';
$(".header-dark").removeClass("header-dark");
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment