>>150
KeySnailの「その他のコード」に、newtabhomepageというアドオンを改造した下記コードを登録してる。
新タブのURL(about:blank)と、検索バーを空にしてフォーカスする部分はお好みでカスタマイズどうぞ。
でもKeySnailは57で動かなくなるのよね…(´・ω・`)

var newtabhomepage = {
init: function (){
if(window === undefined || window.gBrowser === undefined){
setTimeout(function(){
newtabhomepage.init();
}, 1000);
return;
}
gBrowser.removeEventListener("NewTab", BrowserOpenTab, false);
window.BrowserOpenTab = newtabhomepage.opentab;
gBrowser.addEventListener("NewTab", newtabhomepage.opentab, false);
},
opentab: function (aEvent){
var newtab = gBrowser.addTab("about:blank");
gBrowser.selectedTab = newtab;
var bar = document.getElementById("searchbar");
bar.value = '';
bar.focus();
return newtab;
}
}
newtabhomepage.init();