Old Google Search Box

By con_mame Uploaded Sep 14, 2009
/*
   @author: con_mame
   @url: http://d.hatena.ne.jp/con_mame/
   @title: Old Google Search Box
   @description: Back To Old Google Search Box Size
   @version: 0.1
*/

(function(){
   jetpack.future.import("jetpack.pageMods");

   var addStyle = function(doc){
      var elements = [$(".lst", doc), $(".lsb", doc)];
      jQuery.each(elements, function(){
         this.css({fontSize:"12px", height:"inherit"});
      });
   }

   var options ={};
   options.matches = ["http://www.google.com/*", "http://www.google.co.jp/*"];

   jetpack.pageMods.add(addStyle, options);
})();