/* http://greasemonkey.mozdev.org */

// ==UserScript==
// @name          GreaseGoogle
// @namespace     http://akkartik.name/greasemonkey
// @description   Remove URL redirections, open search links in a new tab.
// @include       http*://*.google.*/*
// ==/UserScript==

(function () {
     var external = document.links;
     for (var k=0; k<external.length; k++) {
          external[k].href = external[k].href.replace(/http.*:\/\/[^\/]*.google.com\/url.*q=(.*)\&e=.*$/,"$1") ;
          external[k].href = external[k].href.replace(/http.*:\/\/[^\/]*.google.com\/url.*url=(.*)(\&ei=[^\&]*)?$/,"$1") ;
          external[k].href = external[k].href.replace(/http.*:\/\/[^\/]*.google.com\/news\/url.*url=(.*)(\&ei=[^\&]*)?$/,"$1") ;

          if (external[k].href
                    && !/javascript:.*/i.exec(external[k].href)
                    && !/https?:\/\/[^\/]*\.google\.[^\/]*\/[^u]/i.exec(external[k].href)) {
               external[k].target = "_blank";
          }
     }
})();
