阅读:2000回复:4
[键盘+触摸板习惯的进] 简洁与扩展性之间的和谐.... (keyconfig 片段)
1 平时效果
![]() 2 切换出导航条 ![]() 手动切换导航条自动选择中地址栏 toggle方式:我设置的是S键 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ var nBar = document.getElementById('nav-bar'); var flg = nBar.getAttribute('collapsed')=='false'?true:false; nBar.setAttribute('collapsed',flg); document.persist(nBar.id, 'collapsed'); if(!flg)openLocation(); 传统方式:我的设置是alt+d (把默认先设置成四个键防止冲突) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ var nBar = document.getElementById('nav-bar'); nBar.setAttribute('collapsed',false); document.persist(nBar.id, 'collapsed'); openLocation(); keyconfig 更多片段 https://www.firefox.net.cn/forum/viewtopic.php?p=232313 |
|
1楼#
发布于:2010-03-03 16:31
就算完全隐藏Ctrl+L还是能跳出独立地址栏
|
|
2楼#
发布于:2010-03-03 16:31
习惯用手势隐藏导航栏的路过
|
|
3楼#
发布于:2010-03-03 16:31
标准地址栏隐藏掉或者拿掉后,ctrl+L跳出小的地址栏的方式,我是很喜欢的。
美中不足的是那个下拉里的信息有点少,只有url,没有title信息,没有tag 信息,一些ctrl+a ,alt+enter动作都不支持。 还有一点就是一些其他扩展的按钮放不上去。 有时间想写个extension,试试看把这块overlay掉后,能不能搞成完全适应我的习惯。 |
|
4楼#
发布于:2010-03-03 16:31
|
|