No YouNoobs Nov 2008

By Timothy Butwinick Last update Mar 27, 2009 — Installed 1,168 times.

There are 1 previous version of this script.

// No YouNoobs
// version 0.3
// March 27, 2009
// Copyright (c) 2007, Nicholas Francisco
// Edited by Timothy Butwinick November 2008, March 2009
// Released under the GPL license
// http://www.gnu.org/copyleft/gpl.html

// ==UserScript==
// @name          No YouNoobs Nov 2008
// @namespace     http://franciscodesign.com/junk/
// @description   YouTube comments are useless.
// @include       http://*.youtube.com/*
// ==/UserScript==

(function() {

var removeComments = document.getElementById('watch-comment-panel');
if (removeComments) {
    removeComments.parentNode.removeChild(removeComments);
}

})();