怎么删除AwesomeBookmarkbar.uc.js的一些功能
firefox吧
全部回复
仅看楼主
level 5
学问何妨a 楼主
"去掉启动显示书签栏"和"主页和新标签显示书签栏”因为想用stylish来取代
https://github.com/feiruo/userChromeJS/blob/master/AwesomeBookmarkbar.uc.js
这是stylish
@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
#main-window[stylish-url="about:home"] #PersonalToolbar,
#main-window[stylish-url="about:blank"] #PersonalToolbar,
#main-window[stylish-url="about:newtab"] #PersonalToolbar {
visibility: visible;
}
2016年07月09日 02点07分 1
level 14
那你用这个脚本还有什么意义
2016年07月09日 02点07分 2
1.其我想中心是stylish的.这样在标签了也可以打开书签栏(不用右键再选择) 2.这脚本确实都能实现了,只是有动画.(在"主页和新标签显示书签栏"时没动画就好了,stylish是没动画j的[乖]
2016年07月09日 02点07分
大概知道"动画"的原因了
2016年07月09日 03点07分
level 14
你说的那些用样式就能解决,脚本禁用了吧
/*自动隐藏*/
#PersonalToolbar {
width: 100% !important;
position: fixed !important;
background:#fff!important;
margin-top:-30px !important;
transition: .6s ease-out 3s!important;
z-index: -1;
opacity: 0 !important;
}

#nav-bar:hover~#
PersonalToolbar,
#TabsToolbar:hover~#
PersonalToolbar,#PersonalToolbar:hover {
margin-top:0 !important;
transition: .1s ease-in 1s!important;
z-index: 1;
opacity: 1 !important;
}
2016年07月09日 05点07分 3
Thanks a lot 回到家试试
2016年07月09日 06点07分
1