如何在全屏模式下禁用 Firefox 地址栏动画?

jmk*_*aer 7 firefox fullscreen address-bar firefox-77

在 Firefox 中全屏显示时如何禁用地址栏隐藏动画?

我正在努力完成这个问题的内容。解决方案是设置toolkit.cosmeticAnimations.enabledfalsein about:config,但这不再起作用 - 一旦我更新到 77 动画就返回了,并且在 78 中仍然是一个问题。

tHe*_*SiD 4

编辑:在尝试使用自定义样式表之前,请确保 在页面toolkit.legacyUserProfileCustomizations.stylesheets中设置为!trueabout:config

您可以在 userchrome.css 中添加以下内容。了解如何在此处创建或编辑https://www.userchrome.org/how-create-userchrome-css.html

/* To completely disable fullscreen transition */

#navigator-toolbox[fullscreenShouldAnimate] {
    transition: none !important;
}
Run Code Online (Sandbox Code Playgroud)
/* To drastically reduce transition time - zero doesn't work, minimum is 0.01 */

#navigator-toolbox[fullscreenShouldAnimate] {
  transition: .15s !important;
}
Run Code Online (Sandbox Code Playgroud)