Flickr remove spaceball

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

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';
}