Created
July 27, 2017 04:00
-
-
Save phantom42/0a13b6a0b77becb8d0a15da20a8ef4ec to your computer and use it in GitHub Desktop.
This GreaseMonkey script hides the Hot Network Questions from StackOverflow and the StackExchange network.
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 HNQ Hider | |
// @namespace colemancodes.com | |
// @description Hides Stackexchange HNQ | |
// @include *://*.stackexchange.com/* | |
// @include *://*.stackoverflow.com/* | |
// @version 1 | |
// @grant none | |
// ==/UserScript== | |
document.getElementById('hot-network-questions').style.display = 'none'; | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment