Flickr remove spaceball

By Lenny Domnitser Last update Feb 18, 2007 — Installed 17,703 times. Daily Installs: 17, 23, 14, 16, 21, 7, 13, 9, 10, 21, 22, 18, 6, 21, 16, 10, 11, 17, 5, 15, 7, 12, 24, 11, 12, 15, 14, 9, 14, 11, 12, 12
/*

Flickr remove spaceball
Version 0.2
(C) 2005 Lenny Domnitser
Use this freely under the GNU GPL, http://www.gnu.org/licenses/gpl.html

2007-02-18 - fix for new img src

*/

// ==UserScript==
// @name          Flickr remove spaceball
// @description   Removes the empty image (download deterrent) positioned over some photos on Flickr
// @include       http://flickr.com/photos/*
// @include       http://www.flickr.com/photos/*
// ==/UserScript==


var spaceball = document.evaluate('//img[contains(@src, "/images/spaceball.gif")]', document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue;
if(spaceball) {
  spaceball.style.visibility = 'hidden';
}