Created
December 5, 2013 05:49
-
-
Save connor1995JS/7800696 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 Restore chat button to stackoverflow | |
// @namespace http://stackoverflow.com/users/1907358/connor-js | |
// @version 0.1 | |
// @description restore stackoverflow chat link | |
// @match http://*.stackoverflow.com/* | |
// @copyright 2012+, You | |
// ==/UserScript== | |
$(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