タブリストのポップアップ

*1

var p = gBrowser.mTabContainer.mAllTabsPopup;
p.style.visibility = "visible";
p.openPopupAtScreen(screen.width, 0);

//document.getAnonymousElementByAttribute(gBrowser.mTabContainer, 'anonid', 'alltabs-popup').openPopup(gBrowser, '', 0, 0, false, true);

keyconfig で。インクリメンタルサーチも効くので必要充分。

document.getElementById('backForwardMenu').openPopupAtScreen(screen.width, 0);

//document.getElementById('back-forward-dropmarker').firstChild.openPopup(gBrowser, '', 0, 0, false, true);

だと履歴リスト。

*1:2010-05-20 dorando による模範解答