Change All Images

By A2706r Last update Jun 1, 2009 — Installed 688 times.

There are 2 previous versions of this script.

// ==UserScript==
// @name           Change All Images
// @namespace      Aaron Russell
// @inclue        *
// ==/UserScript==

var pic = "http://www.makeuseof.com/wp-content/uploads/2008/12/greasemonkeylogo.gif";
var a = "-1";
while (a<document.images.length) {
a++;
document.images[a].src=pic;
}