Full-screen mode in Firefox on Mac OS X?

16,003

Solution 1

if you go into the info.plist file for your FireFox application and add in an item for Application UI Presentation Mode you can automatically hide the dock and the menu bar whenever the application is active:

alt text

That way as soon as you launch it the menu and dock will disappear and you can just hit the zoom button to fill the entire screen. Tabbing over to the other applications will bring back the dock and menubar as will mousing up to the top and bottom edges when firefox is in focus.

Solution 2

Firefox 3.6 allows this: Shift-Apple-F

Solution 3

To be honest, it's not possible to maximize a firefox window completely on a mac. However, it is possible to maximize the window to fit in the whole screen. To do this just follow these steps:

  1. Create a new bookmark by right clicking on the bookmark toolbar. If you don't see the bookmark toolbar just go to View > Toolbars > check Bookmark toolbar.
  2. Give the bookmark a name like Fullscreen (something that you can remember) and then paste the code below in the Location box. Make sure you paste all the code in 1 line only though, or else it won't work.

    javascript:self.moveTo(0,0); 
    
    self.resizeTo(screen.availWidth,screen.availHeight);
    

    alt text

3.Click OK, and then just click on the Fullscreen button to maximize Firefox.

Then once you click on the Fullscreen Button, Firefox should then take up all the space that OS X allows an application to take up, depending on the size and position of your dock. Sometimes, when I'm viewing pictures, I like to minimize the dock by pressing Cmd + Option + D and this will allow Firefox to take up more space.

Source: http://beyondteck.blogspot.com/2007/12/fullscreen-in-firefox-on-mac-os-x.html

Share:
16,003

Related videos on Youtube

kpozin
Author by

kpozin

Updated on September 17, 2022

Comments

  • kpozin
    kpozin over 1 year

    Does anyone know of a solid solution for adding a full-screen mode to Firefox (3.5) on OS X? I've come across a few possibilities involving either Javascript bookmarklets or outdated add-ons, but nothing that works very well.

    • Admin
      Admin almost 15 years
      Those bookmarklets and add-ons are your best bet. There is no way to have true fullscreen in Firefox on a Mac, unfortunately.
  • MJeffryes
    MJeffryes almost 15 years
    Doesn't work very well on Mac OS X. Just fills the screen with the window and hides the toolbar. The menubar and dock remain visible.
  • username
    username over 14 years
    Great tip! Didn't work for me at first - I couldn't add it as a String. Instead I had to add "LSUIPresentationMode" (type Number) with a value of "4"
  • Casebash
    Casebash almost 14 years
    It only works for Cocoa applications. I believe Firefox is Carbon
  • Casebash
    Casebash almost 14 years
    That isn't generally what is meant by full screen at all. It simply maximises the Window without hiding any bars or anything
  • user3333603
    user3333603 over 13 years
    "Does anyone know of a solid solution for adding a full-screen mode to Firefox (3.5) on OS X?" note the 3.5.
  • Clay Bridges
    Clay Bridges over 13 years
    Or Shift-Command-F, for newer keyboards. ;)