Removes the "Similar communities to" from reddit.com
// ==UserScript==
// @name Remove Reddit Similar communities to
// @description Removes the "Similar communities to" from reddit.com
// @include *reddit.com/*
// @grant none
// @version 0.0.1.20190703051744
// @namespace https://greasyfork.org/users/4252
// ==/UserScript==
(function() {
var style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = ' ._3ecQI6Cj7AUan8ODNedckX {display:none !important;}';
document.getElementsByTagName('head')[0].appendChild(style);
})();