Keyconfig
openDialog('chrome://keyconfig/content/', '_blank', 'resizable');
/* Firefox */
Extensions
BrowserOpenExtensions('extensions');
Manage Bookmarks
toOpenWindowByType('bookmarks:manager', 'chrome://browser/content/bookmarks/bookmarksManager.xul');
Next Tab
gBrowser.mTabContainer.advanceSelectedTab(1,true);
Previous Tab
gBrowser.mTabContainer.advanceSelectedTab(-1,true);
Reload All Tabs
gBrowser.reloadAllTabs();
Themes
BrowserOpenExtensions('themes');
/* Firefox 1.5 or miniT */
Move Tab -> End
gBrowser.moveTabTo(gBrowser.mCurrentTab,gBrowser.mTabContainer.childNodes.length-1);
Move Tab -> Left
if(gBrowser.mCurrentTab.previousSibling) gBrowser.moveTabTo(gBrowser.mCurrentTab,gBrowser.mCurrentTab._tPos-1);
Move Tab -> Right
if(gBrowser.mCurrentTab.nextSibling) gBrowser.moveTabTo(gBrowser.mCurrentTab,gBrowser.mCurrentTab._tPos+1);
Move Tab -> Start
gBrowser.moveTabTo(gBrowser.mCurrentTab,0);
/* Thunderbird */
Display Attachments Inline
ToggleInlineAttachment(event.target);
Rewrap
goDoCommand('cmd_rewrap');
Run Filters on Folder
goDoCommand('cmd_applyFilters');
Run Junk Mail Controls On Folder
goDoCommand('cmd_runJunkControls');
Send Unsent Messages
goDoCommand('cmd_sendUnsentMsgs');
/* contributed by ausdilecce */
Mark Msg Answered
var hdr=GetDBView().hdrForFirstSelectedMessage; GetDBView().db.MarkHdrReplied(hdr,true,null);
Unmark Msg Answered
var hdr=GetDBView().hdrForFirstSelectedMessage; GetDBView().db.MarkHdrReplied(hdr,false,null);
/* Extension: Menu Editor */
Menu Editor
openDialog('chrome://menuedit/content/menueditprefs.xul','', 'resizable');