MinimalOnvista
By gibsganich
—
Last update Apr 7, 2007
—
Installed
571 times.
// Remove some columns from Onvista.de pages
// Release 0.0.3
//
//
// $Id: minimalonvista.user.js 71 2007-04-08 22:34:21Z knut $
//
// About: Removes leftmost, ads-laden column and "news" column from finance portal "www.onvista.de"
// May need a little startup time (a few seconds on my machine)
// Does NOT remove big banner ads- let another banner filter such as privoxy do that.
// ==UserScript==
// @name MinimalOnvista
// @namespace knbknb.greasemonkey.org/
// @description Cleanup the finance portal www.onvista.de: Get rid of some layout elements (columns with junk info, and ads). Some startup time required.
// @include http://*.onvista.de*
// ==/UserScript==
var ids = Array("hp_1", "hp_3", "banner");
for (var m=0; m<ids.length; m++){
var n = ids[m];
var d = document.getElementById(n).style.display="none";
}