GoogleBlogSearchInstead

From Chickenfoot Script Repository

// ==UserScript==
// @name GoogleBlogSearchInstead
// @when Pages Match
// @description 
// @include http://www.google.com/*
// ==/UserScript==

 // find('first textbox') may have problems on Google Personalized Homepage
 // if there are textboxes in the homepage modules
 //
 // @include   /^http:\/\/www.google.com\/((search|ig|webhp).*)?$/
 
 var position = insert(before(find('first images link')),
   new Link('Blogs',
   function() {
     var value = find('first textbox').element.value;
     go('http://blogsearch.google.com/');
     enter(value);
     click('first search button');
   }));
 insert(after(position), "    ");