Reddit: Eliminate Report and Save Links

By George Saunders Last update Jan 28, 2009 — Installed 152 times. Daily Installs: 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0

There are 5 previous versions of this script.

// ==UserScript==
// @name          Reddit: Eliminate Report and Save Links
// @description   Remove the report, save, share, and watch links at reddit.com.
// @include       *reddit.com*
// ==/UserScript==


var anchors = document.getElementsByTagName( "a" ); 


for( var loop = 0; loop < anchors.length; loop++ ) {
    var anchor = anchors[ loop ];
    if ((anchor.innerHTML=="save" ||
	 anchor.innerHTML=="report" ||
	 anchor.innerHTML=="share" ||
	 anchor.innerHTML=="watch")){
        anchor.parentNode.removeChild(anchor)
    }
}