kill youtube comments and sidebar

makes youtube comments and sidebar invisible

// ==UserScript==
// @name        kill youtube comments and sidebar
// @namespace   kandelabr
// @match       https://*.youtube.com/*
// @grant       none
// @version     1.0
// @author      -
// @description makes youtube comments and sidebar invisible
// jshint esversion:6
// ==/UserScript==  */

["comments", "secondary", "related"].forEach(e=>document.getElementById(e).style.visibility='hidden');