Remove Spaceball image

By Jared McAteer Last update Nov 26, 2008 — Installed 227 times. Daily Installs: 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0
// ==UserScript==
// @name           Remove Spaceball image
// @namespace      http://greasemonkey.jaredmcateer.com
// @include        http://flickr.com/*
// @include 	   http://*.flickr.com/*
// ==/UserScript==

// All your GM code must be inside this function
// Add jQuery
    var GM_JQ = document.createElement('script');
    GM_JQ.src = 'http://jquery.com/src/jquery-latest.js';
    GM_JQ.type = 'text/javascript';
    document.getElementsByTagName('head')[0].appendChild(GM_JQ);

// Check if jQuery's loaded
    function GM_wait() {
        if(typeof unsafeWindow.jQuery == 'undefined') { window.setTimeout(GM_wait,100); }
    else { $ = unsafeWindow.jQuery; letsJQuery(); }
    }
    GM_wait();

// All your GM code must be inside this function
    function letsJQuery() {
       $(".photoImgDiv img[src='/images/spaceball.gif']").remove();
    }