Ce site disposera de fonctionnalités limitées pendant que nous effectuons des opérations de maintenance en vue de vous proposer un meilleur service. Si un article ne règle pas votre problème et que vous souhaitez poser une question, notre communauté d’assistance est prête à vous répondre via @FirefoxSupport sur Twitter, et /r/firefox sur Reddit.

Rechercher dans l’assistance

Évitez les escroqueries à l’assistance. Nous ne vous demanderons jamais d’appeler ou d’envoyer un SMS à un numéro de téléphone ou de partager des informations personnelles. Veuillez signaler toute activité suspecte en utilisant l’option « Signaler un abus ».

En savoir plus

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

  • 2 réponses
  • 1 a ce problème
  • 1 vue
  • Dernière réponse par 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

Solution choisie

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.

Lire cette réponse dans son contexte 👍 0

Toutes les réponses (2)

more options

Solution choisie

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 :)