Saturday, January 29, 2011

Web comments are always awful, so remove the stupid crap other people say from a number of sites


// ==UserScript==
// @name           Web comments are always awful
// @namespace      http://www.ryanbreen.com/
// @description    Web comments are always awful
// @include        http://*
// @include        https://
// ==/UserScript==

if (window.location.href.match(/youtube\.com/)) {
 var el = document.getElementById('watch-discussion');
 if (el != null) el.parentNode.removeChild(el);
} else if (window.location.href.match(/cnn\.com/)) {
 var el = document.getElementById('dsq-content');
 if (el != null) el.parentNode.removeChild(el);
 var el = document.getElementById('dsq-content-stub');
 if (el != null) el.parentNode.removeChild(el);
 var el = document.getElementById('comments');
 if (el != null) el.parentNode.removeChild(el);
} else if (window.location.href.match(/time\.com/)) { 
 var el = document.getElementById('commentStory');
 if (el != null) el.parentNode.removeChild(el);
} else if (window.location.href.match(/yahoo\.com/)) { 
 var el = document.getElementById('ygs-comments');
 if (el != null) el.parentNode.removeChild(el);
}

0 comments:

Post a Comment