// ==UserScript==// @name Yahoo Search on Google// @namespace google_yahoo// @description Adds a Yahoo link to the Google results page// @include http://www.google.com/search// ==/UserScript==var jq = document.createElement('script');jq.src = 'http://code.jquery.com/jquery-latest.js';jq.type = 'text/javascript';document.getElementsByTagName('head') [0].appendChild(jq);// Wait for jQuery to be loaded(function wait_jq(){ if(typeof unsafeWindow.jQuery == 'undefined') { window.setTimeout(wait_jq,100); return; } $ = unsafeWindow.jQuery; $('#sd').append( ' > Search at <a href="http://search.yahoo.com/search?p=' + encodeURI($('input[@name="q"]').attr('value')) + '">Yahoo</a>' );})(); |