// ==UserScript==
// @name           eroi
// @namespace      eroi
// @include        http://www.google.co.jp/search*
// ==/UserScript==

(function(){


var func = function(obj){
  eval(obj.responseText);
  
  $('a.l').each(function(){
    var text = $(this).text();
    $(this).text('すごい' + text);
  });
};

GM_xmlhttpRequest({ method:"get", 
url:"http://ajax.googleapis.com/ajax/libs/jquery/1.3.1/jquery.min.js",
onload:func});



})();


