quote:
Originally posted by SonicSam
quote:
Originally posted by Rolando
I know if you add &sout=1 at the end of the url it works, but I don't want to do this every single time...? Does anyone know of a greasemonkey script or something?
http://userscripts.org/scripts/show/82145
I read the code and seems like it should work but it doesn't?
// ==UserScript==
// @name Old Google Images
// @author Kobi Tate
// @include
http://images.google.*/*
// @include
http://www.google.*/images?*
// @namespace
http://userscripts.org/scripts/show/82145
// @description Brings back the old version of Google Images. Script derived from "Google Images Direct links" by Dwoo
// @version 1.0.2
(http://userscripts.org/scripts/show/48293)
// ==/UserScript==
(function () {
if ((/q=/).test(document.location.href)) {
if (!(/&sout=1/).test(document.location.href)) {
window.location = window.location + "&sout=1";
}
}
})()