Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save domharrington/a42403d9bbb1433ad0ce896da88fd06f to your computer and use it in GitHub Desktop.
Save domharrington/a42403d9bbb1433ad0ce896da88fd06f to your computer and use it in GitHub Desktop.
Remove hot network questions from Stack Overflow
// ==UserScript==
// @name Remove hot network questions from Stack Overflow
// @namespace http://tampermonkey.net/
// @version 0.1
// @author You
// @match https://stackoverflow.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
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