Cold Network Questions

Hides the Hot Network Questions sidebar on Stack Exchange and Stack Overflow; it's just so distracting!

Verze ze dne 20. 06. 2015. Zobrazit nejnovější verzi.

// ==UserScript==
// @name        Cold Network Questions
// @namespace   kunaifirestuff
// @description Hides the Hot Network Questions sidebar on Stack Exchange and Stack Overflow; it's just so distracting!
// @include     *.stackexchange.com/*
// @include     *stackoverflow.com/*
// @version     1
// @grant       none
// ==/UserScript==

var element = document.getElementById("hot-network-questions");
element.outerHTML = "";