Clarin - Eliminar MasOportunidades

By Francisco Morales Last update Sep 8, 2006 — Installed 421 times.
// ==UserScript==
// @name Clarin - Eliminar MasOportunidades
// @namespace http://www.veintecerodos.com.ar
// @description Greasemonkey script for Firefox to change the appearance of Clarin.com
// @include *clarin.com*


// ==/UserScript==

(function(){ 
	function eliminarPublicidadMasOportunidades(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);
	}
	
	var cssStyle = 'DIV.ColumnaC, #masop {display:none;}';
	
	eliminarPublicidadMasOportunidades(cssStyle);

})();