Remove Background Image

By Dean Wilson Last update Jun 27, 2006 — Installed 786 times.
// ==UserScript==
// @name          Remove Background Image
// @namespace     http://www.unixdaemon.net/gmscripts/
// @description   Remove any background images.
// @include       http://london.pm.org/ljs-200605/*
// ==/UserScript==

(function() {
  document.body.style.backgroundImage = "none";
})();