2008-10-19

Firefox扩展备份

Stylish
Stylish扩展通过自定义CSS,自动显示/隐藏Firefox的工具栏,对于显示器还停留在1027*768的童鞋来说,通过自动隐藏Firefox的部分工具栏来节省屏幕浏览面积来说很有用。
附:自动显示/隐藏书签工具栏的CSS:

/* --- 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的“应用程序快捷方式”功能的扩展。
事实上,Firefox安装扩展后,是非常占资源的,而以上的前两个扩展就有一些功能有叠加,根据自己喜好和需求选择。下面是我的firefox界面定制的效果:
Firefox界面截图
知识共享署名 3.0 Unported许可协议许可。
Blogger强力驱动 imfer.me设计主题