Hi,
i wan’t to open a new window; either as popup, but with scrollbar, or as normal window but with disabled address bar and other toolbar’s.
Old API allows parameters to specify a window UI in detail:
{
width : width,
height : height,
//popup : 1,
dialog : 'yes',
chrome : 'yes',
centerscreen: 'yes',
menubar : '0',
scrollbar : 'yey',
resizable : '0',
toolbar : '0',
location : '0',
personalbar : 'yes',
status : 'yes'
};
From current documentation (https://developer.mozilla.org/en-US/Add-ons/WebExtensions/API/windows/create) i don’t see that possible.
- is that considered as a bug or a incomplete feature?
- how window can be opened as described? (scrollbar: on, toolbars: off)