Skip to content

Instantly share code, notes, and snippets.

@tsleyson
Created February 6, 2015 03:46
Show Gist options
  • Save tsleyson/243fbe2ef7e25f97183e to your computer and use it in GitHub Desktop.
Save tsleyson/243fbe2ef7e25f97183e to your computer and use it in GitHub Desktop.
The Hot Network questions sidebar on Stack Exchange is a constant distraction to me, so hide it with this tiny Greasemonkey script
// ==UserScript==
// @name hideHotNetworkQuestions
// @namespace leyson
// @description Hides hot network questions on Stack Exchange
// @include *.stackexchange.com/*
// @version 1
// @grant none
// ==/UserScript==
document.getElementById("hot-network-questions").style.visibility = "hidden";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment