
No YouNoobs - 2011
By: a guest on May 28th, 2011 | syntax:
JavaScript | size: 0.59 KB | hits: 164 | expires: Never
// No YouNoobs
// version 0.1.1
// March 16, 2007
// Copyright (c) 2007, Nicholas Francisco
// updated to work as of May 28, 2011 by Michael Kelly
// Released under the GPL license
// http://www.gnu.org/copyleft/gpl.html
// ==UserScript==
// @name No YouNoobs - 2011
// @namespace http://franciscodesign.com/junk/
// @description YouTube comments are useless.
// @include http://*.youtube.com/*
(function() {
var removeComments = document.getElementById('comments-view');
if (removeComments) {
removeComments.parentNode.removeChild(removeComments);
}
})();