Last active
December 30, 2015 07:09
-
-
Save connor1995JS/7794470 to your computer and use it in GitHub Desktop.
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 Stackoverflow black bar destroyer | |
// @namespace http://stackoverflow.com/users/1907358/connor-js | |
// @version 0.1 | |
// @description Does what it says on the tin. | |
// @match http://*.stackoverflow.com/* | |
// @copyright 2012+, You.......... | |
// ==/UserScript== | |
var styles = document.createElement('style'); | |
styles.textContent = '.topbar{background:#EEE;border-bottom:1px solid #E6E6E6}.topbar *{color:#000!important}#search input{border-color:#DDD}.topbar .topbar-icon:hover,.topbar .topbar-links .profile-me:hover,.topbar .topbar-links .topbar-menu-links a:hover{background-color:#E6E6E6}'; | |
document.head.appendChild(styles); | |
$(function() { | |
$('.topbar-menu-links').prepend('<a href="/chat">chat</a>'); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment