No YouNoobs - Hide YouTube Comments

By Nicholas Francisco Last update Mar 18, 2007 — Installed 3,790 times. Daily Installs: 3, 3, 2, 2, 3, 4, 0, 4, 5, 1, 2, 7, 0, 1, 5, 5, 5, 5, 3, 11, 5, 5, 4, 1, 2, 2, 1, 4, 0, 3, 6, 3
// No YouNoobs
// version 0.1
// March 16, 2007
// Copyright (c) 2007, Nicholas Francisco
// Released under the GPL license
// http://www.gnu.org/copyleft/gpl.html

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

(function() {

var removeComments = document.getElementById('commentsDiv','all_comments');
if (removeComments) {
    removeComments.parentNode.removeChild(removeComments);
}

})();