如何在 Firefox 中隐藏显示 link URL 的状态栏
How to hide the status bar showing link URLs in Firefox
我正在研究如何将 Firefox 用作信息亭,我发现了一个名为 R-kiosk 的有用附加组件,它的工作原理很吸引人,但我发现了一个我没有解决方案的问题。
当我将光标移动到 link 或图像时,它会在 Firefox 的左下角显示关于此 link URL 或图像 URL 的栏.
如何隐藏它?
您可以 style the user interface of Firefox 使用 css 文件,userChrome.css
在 <profile_root>/chrome
文件夹中。
获取配置文件文件夹路径的最简单方法是导航至 url about:profiles
.
您可能需要创建 userChrome.css 文件,因为它默认不存在。将以下内容添加到 CSS:
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */
statuspanel {display:none!important;}
从版本 61 开始
statuspanel {display:none!important;}
已更改为:
#statuspanel {display:none!important;}
#statuspanel {display:none!important;}
终于!我遇到了很多无用的 CSS 建议。
这个很简单而且很管用!感谢 jdphenix 和 Simone。 (Firefox Quantum 62)
我正在研究如何将 Firefox 用作信息亭,我发现了一个名为 R-kiosk 的有用附加组件,它的工作原理很吸引人,但我发现了一个我没有解决方案的问题。
当我将光标移动到 link 或图像时,它会在 Firefox 的左下角显示关于此 link URL 或图像 URL 的栏.
如何隐藏它?
您可以 style the user interface of Firefox 使用 css 文件,userChrome.css
在 <profile_root>/chrome
文件夹中。
获取配置文件文件夹路径的最简单方法是导航至 url about:profiles
.
您可能需要创建 userChrome.css 文件,因为它默认不存在。将以下内容添加到 CSS:
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */
statuspanel {display:none!important;}
从版本 61 开始
statuspanel {display:none!important;}
已更改为:
#statuspanel {display:none!important;}
#statuspanel {display:none!important;}
终于!我遇到了很多无用的 CSS 建议。 这个很简单而且很管用!感谢 jdphenix 和 Simone。 (Firefox Quantum 62)