Google Result Add EN Link

googlescala検索しても http://www.scala-lang.org/ 出てこないYo! ウェブ全体から検索しても出てこないYo! インターフェース英語に切り替えないと出てこないYo!

// ==UserScript==
// @name           Google Result Add EN Link
// @version        1
// @author         nazoking@gmail.com
// @namespace      http://nazo.yi.org/
// @include        http://www.google.*/search*
// @Note           
// ==/UserScript==

(function(){
  var ss = document.getElementById("all").parentNode;

  var link = document.createElement("a");
  link.href= location.href.toString().replace('hl=ja','hl=en');
  link.appendChild(document.createTextNode("en"));
  ss.appendChild(link);
})();