- Stylish
- Stylish扩展通过自定义CSS,自动显示/隐藏Firefox的工具栏,对于显示器还停留在1027*768的童鞋来说,通过自动隐藏Firefox的部分工具栏来节省屏幕浏览面积来说很有用。
/* --- begin example --- *//*
//this will hide a bookmark toolbar
#toolbar-id {
display: none;
}
//this will show the toolbar if you move the cursor to navigator toolbox
#navigator-toolbox:hover > #toolbar-id {
display: -moz-box;
}
*//*--- end example --- */
/* The following CSS code will hide navigation toolbar and personal toolbar
and show them again if you move the cursor to menubar */
/* begin css */
@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
#PersonalToolbar {
display: none;
}
#navigator-toolbox:hover > #PersonalToolbar {
display: -moz-box;
}
/* end css */自动显示/隐藏状态栏CSS:
@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
@-moz-document url(chrome://browser/content/browser.xul) {
#status-bar {
margin-bottom: -20px !important;
}
#status-bar:hover {
margin-bottom: 0 !important;
}
}- Personal Menu
- Personal Menu也是用来定制Firefox界面的扩展,同样对于屏幕较小的用户,可以通过隐藏Firefox的文件菜单栏来节约掉一行空间,并且Personal Menu有一个Menu button可以用来显示菜单栏,你可以通过Firefox的自定义工具栏来拖放Menu button的位置。
- Prism for Firefox
- 是不是很羡慕Google Chrome的“应用程序快捷方式”功能?我也非常着迷Chrome这个功能,Prism for Firefox就是一个模仿Chrome的“应用程序快捷方式”功能的扩展。