I’m working on writing a new extension and I’d like the ability for it to open a clean, separate window without the URL or tab bar.
From what I can tell, the only way to do that is by passing type: popup or panel
to the windows.create() JS API. However, windows created in this method are always on top of all other Firefox windows, at least on my machine (Ubuntu).
The alternative would be to create a regular window, but hide the tab and URL bars. This doesn’t seem possible to do either, at least not on an individual window.
Is it possible for me to accomplish what I’m looking for in Firefox?
Thanks!