Skip to content

Instantly share code, notes, and snippets.

@phantom42
Created July 27, 2017 04:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save phantom42/0a13b6a0b77becb8d0a15da20a8ef4ec to your computer and use it in GitHub Desktop.
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.
// ==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