Created
April 21, 2015 17:29
-
-
Save panozzaj/f0e7a2e82d29deb7037e to your computer and use it in GitHub Desktop.
Block StackExchange distracting content
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 SO cleanup | |
// @namespace [email protected] | |
// @version 1 | |
// @grant none | |
// @include http://stackoverflow.com/* | |
// @include https://stackoverflow.com/* | |
// @include http://*.stackexchange.com/* | |
// @include https://*.stackexchange.com/* | |
// @require http://code.jquery.com/jquery-2.1.3.min.js | |
// ==/UserScript== | |
$('#hot-network-questions').hide(); | |
$('#header').hide(); | |
$('.community-bulletin').hide(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment