对于网页浏览我使用苍白之月. Pale Moon 有一个状态栏类似于现在所谓的附加栏在 Firefox 中。
当我将鼠标悬停在链接上时,Pale Moon 会
- URL 显示在状态栏中
- URL 立即显示
- 如果需要,允许 URL 占据状态栏的整个宽度
使用 Firefox,当我将鼠标悬停在链接上时
- URL 显示在左下角的工具提示中
- 网址故意延迟显示
- URL 仅允许一半的浏览器窗口宽度
有没有办法让 Firefox 的行为更像 Pale Moon?我意识到状态-4-Evar可能是最好的解决方案,但我希望看看是否有其他选择。我也会接受经过深思熟虑并参考回答为什么 Firefox 方式“更好”。
答案1
按与上述相同的顺序进行...
在附加栏上显示 URL:
使用时髦的或者用户Chrome.css,定义以下 CSS:
statuspanel { z-index: 1 !important; bottom: 1px !important; } toolbar#addon-bar { z-index: 0 !important; }
经过一些额外的调整,最终结果可能如下所示(Windows 7):
label.statuspanel-label
{
padding-top: 0 !important;
padding-bottom: 0 !important;
border: 0 !important;
background-image: none !important;
background-color: #cedaeb !important;
color: #000000 !important;
}
删除延迟和转换:
将
browser.overlink-delay
偏好设置about:config
为0. 重新启动 Firefox。定义以下 CSS:
statuspanel[type=overLink], statuspanel[inactive][previoustype=overLink] { -moz-transition: none !important; }
允许 URL 跨越整个窗口的宽度:
定义以下 CSS:
statuspanel { max-width: 100% !important; }
奖金:
如果您要将附加栏用作永久固定装置,则可以用以下方法隐藏其关闭按钮:
toolbarbutton#addonbar-closebutton
{
display: none !important;
}
复制粘贴
以下是组合的 CSS(不包括 Windows 7 主题):
statuspanel
{
z-index: 1 !important;
bottom: 1px !important;
max-width: 100% !important;
}
toolbar#addon-bar
{
z-index: 0 !important;
}
statuspanel[type=overLink], statuspanel[inactive][previoustype=overLink]
{
-moz-transition: none !important;
}
toolbarbutton#addonbar-closebutton
{
display: none !important;
}