Only show large Google images

By Dean Wilson Last update Jun 27, 2006 — Installed 721 times.
// ==UserScript==
// @name          Only show large Google images
// @namespace     http://www.unixdaemon.net/gmscripts/
// @description   Makes your default google image view large images only
// @include       http://images.google.*/*
// ==/UserScript==

(function() {

  if (!(window.location.href.match(/imgsz=/))) {
    window.location.replace(window.location + "&imgsz=xxlarge");
  }

})();