【问题标题】:How to hide the status bar showing link URLs in Firefox如何在 Firefox 中隐藏显示链接 URL 的状态栏
【发布时间】:2016-09-02 05:07:39
【问题描述】:

我正在研究如何将 Firefox 用作信息亭,我发现了一个名为 R-kiosk 的有用插件,它的工作原理很像,但我发现了一个我没有解决方案的问题。

当我将光标移动到一个链接或图片上时,它会在 Firefox 的左下角显示关于该链接 URL 或图片 URL 的栏。

如何隐藏?

【问题讨论】:

标签: javascript html firefox browser kiosk


【解决方案1】:

您可以使用 <profile_root>/chrome 文件夹中的 css 文件 userChrome.css style the user interface of Firefox。

获取配置文件文件夹路径的最简单方法是导航到 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;}

【讨论】:

    【解决方案2】:

    从版本 61 开始

    statuspanel {display:none!important;}
    

    已更改为:

    #statuspanel {display:none!important;}
    

    【讨论】:

      【解决方案3】:
      #statuspanel {display:none!important;}
      

      终于!我遇到了很多无用的 CSS 建议。 这个很简单,而且很有效!感谢 jdphenix 和 Simone。 (火狐量子 62)

      【讨论】:

      • 也许你可以更好地解释你的答案。
      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2023-04-09
      • 1970-01-01
      • 1970-01-01
      • 2010-12-05
      • 2014-10-14
      • 2016-03-29
      相关资源
      最近更新 更多