so-clean
Version:
Hides the Hot Network Questions distraction on Stack Overflow
16 lines (15 loc) • 478 B
JavaScript
// ==UserScript==
// @author JAZ
// @name so-clean
// @namespace stackoverflow.com
// @include *://stackoverflow.com/*
// @description Hides "Hot Network Questions" on Stack Overflow
// @version 1.0.4
// ==/UserScript==
setInterval(function () {
var hnq = document.getElementById('hot-network-questions');
if (hnq !== undefined) {
hnq.setAttribute("style", "display:none;");
clearInterval();
}
}, 500);