// googleInEnglish
// This is a Greasemonkey user script to make google websites show in English
// regardless of the country you are in
//
// --------------------------------------------------------------------------
//
// ==UserScript==
// @name googleInEnglish
// @description Makes google websites show in English wherever you are
// @include http://www.google.*
// @include https://www.google.*
// @include https://plus.google.com/*
// @include http://*.youtube.com/*
// @include https://*.youtube.com/*
// @include http://youtube.com/*
// @include https://youtube.com/*
// @version 0.1
// ==/UserScript==
(function() {
if ( window.location.href.match(/\?/) )
extra="&";
else
extra="?";
if ( !window.location.href.match(/hl=en/) )
window.location.href+=extra+"hl=en&gl=US";
})();
За код сильно не пинать - я программирую для себя чисто ради удовольствия.