Advertisement
Guest User

No YouNoobs - 2011

a guest
May 28th, 2011
550
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // No YouNoobs
  2. // version 0.1.1
  3. // March 16, 2007
  4. // Copyright (c) 2007, Nicholas Francisco
  5. // updated to work as of May 28, 2011 by Michael Kelly
  6. // Released under the GPL license
  7. // http://www.gnu.org/copyleft/gpl.html
  8.  
  9. // ==UserScript==
  10. // @name          No YouNoobs - 2011
  11. // @namespace     http://franciscodesign.com/junk/
  12. // @description   YouTube comments are useless.
  13. // @include       http://*.youtube.com/*
  14.  
  15. (function() {
  16.  
  17. var removeComments = document.getElementById('comments-view');
  18. if (removeComments) {
  19.     removeComments.parentNode.removeChild(removeComments);
  20. }
  21.  
  22. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement