How to rid Google of the background image

How to remove the background image from google – a few options:

Install Greasemonkey for FireFox (Chrome has it built in) and add the following script:

//—————————————————-

// ==UserScript==

// @name           Kill g backgound image

// @namespace      solvd

// @include        http://www.google.*/

// ==/UserScript==

window.addEventListener(

‘load’,

function()

{     var pic = document.getElementById(‘fpdi’);

if (pic) {

pic.parentNode.removeChild(pic); }

},

true);

//—————————————————–