Skip to content

Instantly share code, notes, and snippets.

@Soft
Created June 13, 2010 19:26
Show Gist options
  • Save Soft/436926 to your computer and use it in GitHub Desktop.
Save Soft/436926 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Youtube comment remover
// @include http://www.youtube.com/watch*
// ==/UserScript==
(function() {
var comments = document.getElementById("watch-discussion");
comments.parentElement.removeChild(comments);
}())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment