Skip to content

Instantly share code, notes, and snippets.

@VelizarHristov
Created December 28, 2024 23:02
Show Gist options
  • Save VelizarHristov/d1ad1616ea593d0b9afab2dc6e34ce2a to your computer and use it in GitHub Desktop.
Save VelizarHristov/d1ad1616ea593d0b9afab2dc6e34ce2a to your computer and use it in GitHub Desktop.
Greasemonkey script to hide the "Hot Network Questions" feature from StackExchange
// ==UserScript==
// @name Hide StackExchange Hot Network Questions
// @version 1
// @grant none
// @match https://stackoverflow.com/*
// @match https://serverfault.com/*
// @match https://askubuntu.com/*
// @match https://stackapps.com/*
// @match https://superuser.com/*
// @match https://*.stackexchange.com/*
// http://mathoverflow.net/* not included because it does not seem to have this feature
// ==/UserScript==
document.addEventListener('DOMContentLoaded', () => {
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