CodeReposに入れた 新しいタブを開く前にフォーカスをロケーションバーから外すようにしました
元は firefox userChrome.js greasemonkey スクリプトスレ (part1)の178さんのロケーションバーからURL入力してEnterを押すと新規タブで開くuserChrome.js用スクリプトですブックマークレットを開く時とabout:blankな時はその場で開くようにしました(名前は適当)
// open in New Tab from location bar
BrowserLoadURL = function(event,post){
gBrowser.userTypedValue = content.window.document.URL;
if((event && event.altKey) ||
gURLBar.value.match(/^javascript:/) ||
gBrowser.userTypedValue == 'about:blank'){
loadURI(gURLBar.value,null,post,true);
}else{
_content.focus();
gBrowser.loadOneTab(gURLBar.value,null,null,post,false,true);
}
}