在 Firefox 的最新更新中,我想禁用一项功能。当您打开窗口/选项卡或将光标放在地址栏中时,它会变大一点。我该如何禁用/重置此行为?
更新前的地址栏
更新后的地址栏
答案1
about:config
在地址栏中输入。这将打开配置编辑器列出了 Firefox 的设置优先。
设置browser.urlbar.update1
为false,然后重新启动浏览器。
(来源:https://support.mozilla.org/en-US/questions/1274579)
请注意,此解决方案在 Firefox 77 之后不再有效
答案2
如果你只想删除新标签页上的小扩展栏(或以其他方式更改样式),你可以使用用户主页.css。如果要始终删除填充,请删除下面的“:not([open])”部分。
/* based on https://old.reddit.com/comments/fwhlva//fmolndz */
#urlbar[breakout][breakout-extend]:not([open]) {
top: calc((var(--urlbar-toolbar-height) - var(--urlbar-height)) / 2) !important;
left: 0 !important;
width: 100% !important;
}
#urlbar[breakout][breakout-extend]:not([open]) > #urlbar-input-container {
height: var(--urlbar-height) !important;
padding-block: 0px !important;
padding-inline: 0px !important;
}
#urlbar[breakout][breakout-extend][breakout-extend-animate] > #urlbar-background {
animation-name: none !important;
}
#urlbar[breakout][breakout-extend]:not([open]) > #urlbar-background {
box-shadow: none !important;
}
(来源:https://bugzilla.mozilla.org/show_bug.cgi?id=1627861#c3)
如果您以前没有使用过 userChrome.css,则需要启用它。
- 首先,转到
about:config
,然后设置toolkit.legacyUserProfileCustomizations.stylesheets
为true
。 - 打开
about:support
,然后点击“配置文件夹”下的“打开文件夹”按钮 - 创建一个名为 的新目录
chrome
。 - 在该
chrome
目录下,创建一个名为 的文件userChrome.css
。
添加上面指定的规则并重新启动 Firefox。
如果你想要一个更彻底修改的地址栏,userchrome.org 现在提供 一些交互式下拉菜单您可以在其中精确选择想要的栏目外观,同时还可以通过一些屏幕截图展示其外观。
browser.urlbar.update1
从 Firefox 77 开始,允许返回旧版本栏的megabar 首选项将被完全删除。