Cold Network Questions

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

2015-06-20 기준 버전입니다. 최신 버전을 확인하세요.

// ==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 = "";