為了改善您的使用體驗,本網站正在進行維護,部分功能暫時無法使用。若本站的文件無法解決您的問題,想要向社群發問的話,請到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 發問,我們的社群成員將很快會回覆您的疑問。

搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

了解更多

Hide all menus and toolbars without going fullscreeen

  • 8 回覆
  • 1 有這個問題
  • 310 次檢視
  • 最近回覆由 harisont

more options

Is there a way to hide all toolbars and menus without going fullscreen? Basically, I would like to be able to go "almost fullscreen", but still see my system's status bar.

Is there a way to hide all toolbars and menus without going fullscreen? Basically, I would like to be able to go "almost fullscreen", but still see my system's status bar.

被選擇的解決方法

In the end I found a hack to solve this in my specific setup. Thank you anyway!

從原來的回覆中察看解決方案 👍 0

所有回覆 (8)

more options

Is the bar on the bottom?

This is a custom style rule for userChrome.css that I've experimented with. Its goal is to allow the system bar at the bottom to remain visible, and is sized for my display on Windows 10. I have no idea whether it would be useful for Linux.

/* Set max-height for fullscreen so Taskbar is visible */
#main-window[inFullscreen="true"], 
#main-window[inFullscreen="true"] #content-deck {
  /* Set your screen height */
  --my-screen-height: 1200px;
  
  /* Set your taskbar height, this is Windows 10 */
  --my-taskbar-height: 50px;
  
  /* Set your devicePixelRatio, for example visit
 https://www.jeffersonscher.com/res/resolution.php
 at 100% zoom and set the following to match your 
 window.devicePixelRatio */
  --my-devicePixelRatio: 1.25;
  
  /*** COMPUTED VALUES ***/
  --screen-avail-above-taskbar: calc(var(--my-screen-height) - var(--my-taskbar-height));
  max-height: calc(var(--screen-avail-above-taskbar)/var(--my-devicePixelRatio) - 2px) !important;
}

Probably someone else has developed a more elegant approach. A good place to get help with tricky style rules is:

https://www.reddit.com/r/FirefoxCSS/

And for more background on userChrome.css files, I have a site here:

https://www.userchrome.org/

more options

Thank you for your answer, I don't think that applies to my case though. What I aim for is, instead, something as similar as possible to Google Chrome's "app mode" (which you obtain, for example, by running chrome with the flag `--app` from the command like). I found this firefox extension that does something similar but has two problems:

  • it still has a title bar
  • it's glitchy and by default popup in my window manager

由 harisont 於 修改

more options

選擇的解決方法

In the end I found a hack to solve this in my specific setup. Thank you anyway!

more options

Hi harisont, if you think anyone else might be interested in the same thing, feel free to share your technique here.

more options

You can use this code in the Browser Console to toggle the navigator-toolbox off/on in the currently selected window.

You can hide the title bar via the customize page.

(function(){ /*toggle toolbox*/
var doc = Services.wm.getMostRecentWindow("navigator:browser").window.document;
var nt = doc.getElementById("navigator-toolbox");
var ds = nt.style.getPropertyValue("display") == "none";
nt.style.setProperty("display",ds?"-moz-box":"none","important");}
)()
more options

My solution is a bit hacky and quite specific to my setup as I'm running i3 as a wm, but in case it's useful for anyone else: - install the "New window without toolbar extension" (link is above) - change your i3config file so that you disable floating and borders on windows with class "Firefox" (with capital f) (basically, add this line: for_window [class="Firefox"] floating disable border none)

由 harisont 於 修改

more options

Did you try the code I posted above in the Browser Console?

more options

Actually I didn't, because my solution does exactly what I want in my setup, but thank you for posting it, it may be very useful for someone else!