Search

1/21/2007

Greasemonkey script: google at yahoo

讓 http://tw.yahoo.com 的搜尋改成google的,
重點是 form1.id='Form1nnew'; 如果不把form1的id換掉,只改form的action是不行的。

// ==UserScript==
// @name google search at yahoo
// @namespace http://birdegg
// @description
// @include http://tw.yahoo.com/
// ==/UserScript==

function googleAtYahoo(){
form1=document.getElementById('Form1');
form1.action='http://www.google.com.tw/search';
form1.id='Form1nnew';

i=document.getElementById('p');
i.name='q';

fr=document.getElementById('fr');
fr.parentNode.removeChild(fr);

ei=document.getElementsByTagName('fieldset')[0].getElementsByTagName('input')[2];
ei.parentNode.removeChild(ei);
}

(
function(){
googleAtYahoo();
}
)();

沒有留言: