googleSearchEnglish

By glenton Last update Apr 15, 2009 — Installed 367 times.
// googleSearchEnglish
// This is a Greasemonkey user script to make google searches show in English
// regardless of the country you are in
//
// --------------------------------------------------------------------------
//
// ==UserScript==
// @name		googleSearchEnglish
// @description		Makes google searches show in English wherever you are
// @include		http://www.google.*
// ==/UserScript==

(function() {
	if(window.location.href.match(/hl=en/)){}
	else{window.location.href+="&hl=en";}
})();