There are 1 previous version of this script.
// ==UserScript==
// @name Google default logo
// @namespace http://userscripts.org/users/23652
// @description Switches any Google logo to the default
// @include http://*.google.com/
// @include http://*.google.com/webhp*
// @copyright JoeSimmons
// ==/UserScript==
function m() {
document.evaluate("//img[@src]",document,null,7,null).snapshotItem(0).src = "http://www.google.com/intl/en_ALL/images/logo.gif";
}
window.addEventListener('load', m, false);