Windows – How to launch FireFox with no window frame or tabs / address bar

autohotkeybrowserbrowser-tabsfirefoxwindows

I am looking for a way to launch Firefox from a script or command line without any window frame, address bar, or tabs. I'd like to be able to launch this at a given window size and position on screen.

Illustration:

firefox browser

I'd like to only be able to see the section that is comprised of the red box, and the area inside of it.

Using AutoHotKey in Windows, I've been able to launch FireFox at a given window size / position. However, If I try to launch Firefox in "chromeless" mode, and try to resize the window with AHK, I end up with a 0 px by 0 px browser window.

My AutoHotKey Script:

Run, C:\Program Files\Mozilla Firefox\firefox.exe -chrome http://www.google.com/
WinWait, Mozilla Firefox
WinMove,,,100,100,400,300

I've found related questions, but I've not found a solution:

How can I launch a browser with no window frame or tabs

How can I run Firefox with no tab bar, no top bar, no address bar

Best Answer

For that, there once was an addon called "Open Chromeless" – but it was removed from AMO. A work-around is described here; I've just checked it and it seems to work. Partly. Cannot get rid of the addressbar, and there's a frame around the window. If you can live with that:

  1. Press Shift-F4 to open the Scratchpad
  2. In the editor, enter

    window.open("https://superuser.com/", "_blank","width=800,height=600,resizable");
    

    (replace the URL with the one you want to use)

  3. Click "Run" on the scratchpad toolbar

Now a new "chrome-less" window should open with the page specified. Resize it to your needs:

screenshot
Screenshot of the "chromeless window" (click to enlarge)

Right-click next to the addressbar, as shown in the screenshot, lets you disable the address bar as well (untick "Navigation toolbar") – but note that would remove it from your main window as well.

I'm aware this does not fully match your request (it's not launching from the command line, and leaves at least a frame around the window), but it comes as close as I could get to it.

Related Question