搜尋 Mozilla 技術支援網站

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

了解更多

is there a way to make one window of firefox appear like it would in fullscreen without the window actually being in fulscreen?

  • 2 回覆
  • 1 有這個問題
  • 227 次檢視
  • 最近回覆由 lockedlapis

more options

i recently got Netflix and am trying to find a way to have a small window always on top in the corner of my screen. i have the always on top add-on but can't seem to find something to get rid of all toolbars and tabs on only one window

i recently got Netflix and am trying to find a way to have a small window always on top in the corner of my screen. i have the always on top add-on but can't seem to find something to get rid of all toolbars and tabs on only one window

被選擇的解決方法

There is a script command to open a pop-up window where you can specify not to include the usual menu and toolbars. However, Firefox always shows the address bar (you could turn that off, but it would affect all sites), and the window will have a frame around it. To see what that would look like, try this:

Open the Scratchpad using either

  • Shift+F4
  • "3-bar" menu button > Developer > Scratchpad

Paste this line of code, then click the Run button on the Scratchpad's toolbar:

window.open("http://www.netflix.com/", "_blank","width=800,height=600,resizable");

If the extra bars are too distracting, maybe you can find an add-on to get closer to the ideal of a frameless window.

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

所有回覆 (2)

more options

選擇的解決方法

There is a script command to open a pop-up window where you can specify not to include the usual menu and toolbars. However, Firefox always shows the address bar (you could turn that off, but it would affect all sites), and the window will have a frame around it. To see what that would look like, try this:

Open the Scratchpad using either

  • Shift+F4
  • "3-bar" menu button > Developer > Scratchpad

Paste this line of code, then click the Run button on the Scratchpad's toolbar:

window.open("http://www.netflix.com/", "_blank","width=800,height=600,resizable");

If the extra bars are too distracting, maybe you can find an add-on to get closer to the ideal of a frameless window.

more options

awesome, thanks :)