Forked from tbranyen/youtube-comments.user.js
Created
August 14, 2012 12:58
Revisions
-
jugglinmike revised this gist
Aug 14, 2012 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,8 +1,8 @@ // ==UserScript== // @name RemoveYouTubeComments // @description Remove bullshit YouTube comments. // @match http://www.youtube.com/* // @author Tim Branyen // @version 1.0 // ==/UserScript== -
tbranyen created this gist
Aug 14, 2012 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,16 @@ // ==UserScript== // @name RemoveYouTubeComments // @description Remove bullshit YouTube comments. // @include http://www.youtube.com/* // @version 1.0 // ==/UserScript== // Find the comments view element. var commentsView = document.getElementById("comments-view"); // Make sure it exists, otherwise an error will be thrown. if (commentsView) { // Remove this shit from the DOM. commentsView.parentNode.removeChild(commentsView); }