I Live In The UK, Dammit!

By oatzy Last update Jun 16, 2007 — Installed 114 times.
// ==UserScript==
// @name           I Live In The UK, Dammit!
// @namespace      Oatzy
// @description    Reloads .com pages as the UK equivalent (.co.uk)
// @include        http://*.amazon.com/*
// @include        http://www.google.com/*
// ==/UserScript==

(function() {
window.location.href = window.location.href.replace(/.com/gi, '.co.uk');
return false;
})()