Created
December 28, 2024 23:02
-
-
Save VelizarHristov/d1ad1616ea593d0b9afab2dc6e34ce2a to your computer and use it in GitHub Desktop.
Greasemonkey script to hide the "Hot Network Questions" feature from StackExchange
This file contains hidden or 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 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