|
阅读:2802回复:7
求一个能自动隐藏书签栏的插件 越轻量级越好
就是鼠标挪过去 自己弹出来 挪开自己收回去就行
|
|
|
1楼#
发布于:2011-08-25 22:16
https://addons.mozilla.org/zh-CN/firefo ... bookmarks/
不知道够不够轻量级。“工具”菜单里有个选项能设置一些设置 |
|
|
2楼#
发布于:2011-08-25 22:16
mozilla官方出的lesschrome HD啊
|
|
|
3楼#
发布于:2011-08-25 22:16
一直觉得书签栏用处不大。。。
|
|
|
4楼#
发布于:2011-08-25 22:16
来自官方实验室的
Mozilla Labs: Prospector - LessChrome HD 不过这个会将地址栏和书签栏一起隐藏掉,而且没有选项修改。要是可以选择自动隐藏哪一个栏目就舒服多了。 Hide BookmarksBar 这个更加灵活,可以固定新开标签打开、鼠标移动上去自动打开等等,还有一些选项可以设定,使用体验不错,值得试试。 2楼推荐那个看介绍似乎要按CTRL键,配合鼠标移动才会出现书签栏。 |
|
|
5楼#
发布于:2011-08-25 22:16
|
|
|
6楼#
发布于:2011-08-25 22:16
记得以前有个css可以。
|
|
|
7楼#
发布于:2011-08-25 22:16
@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
@-moz-document url(chrome://browser/content/browser.xul) {
#main-window:not([inFullscreen="true"]) #navigator-toolbox:not([customizing="true"]) ~ #browser {
margin-top: -25px !important;/* 適宜調整 */
}
#main-window:not([inFullscreen="true"]) #navigator-toolbox:not([customizing="true"]) > #PersonalToolbar {
-moz-transition: max-height 0s ease-in-out .5s !important;/* 消えるときのアニメーション */
-moz-box-ordinal-group: 1000 !important;
padding: 0 3px !important;
position: relative !important;
z-index: 100 !important;
overflow-y: hidden !important;
max-height: 1px !important;
min-height: 1px !important;
}
/*
#main-window[stylish-url="about:blank"] #navigator-toolbox:not([customizing="true"]) > #PersonalToolbar,*/
#main-window:not([inFullscreen="true"]) #navigator-toolbox:not([customizing="true"]):hover > #PersonalToolbar {
-moz-transition: max-height 0s ease-in-out !important;/* 表示されるときのアニメーション */
max-height: 30px !important;
}
} |
|