// Haaretz TalkBack Stripper
// version 3.0
// 2008-04-08
// Copyright (c) 2008, Ran Yaniv Hartstein
// Released under the GPL license
// http://www.gnu.org/copyleft/gpl.html
//
// --------------------------------------------------------------------
//
// This is a Greasemonkey user script.
//
// To install, you need Greasemonkey: http://greasemonkey.mozdev.org/
// Then restart Firefox and revisit this script.
// Under Tools, there will be a new menu item to "Install User Script".
// Accept the default configuration and install.
//
// To uninstall, go to Tools/Manage User Scripts,
// select "Haaretz TalkBack Stripper", and click Uninstall.
//
// --------------------------------------------------------------------
//
// ==UserScript==
// @name Haaretz TalkBack Stripper
// @author Ran Yaniv Hartstein <http://ranh.co.il/>
// @namespace http://www.brunotorres.net/greasemonkey/
// @description Removes the talkback section from Haaretz articles
// @include http://*haaretz.co.il*
// @include http://*captain.co.il*
// ==/UserScript==
function addGlobalStyle(css) {
var head, style;
head = document.getElementsByTagName('head')[0];
if (!head) { return; }
style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = css;
head.appendChild(style);
}
// Hides comments according to table row background color
addGlobalStyle('tr[bgcolor="#f2efea"], tr[bgcolor="#d4dce7"] {display: none !important; visibility: hidden !important;}');