Hi there,
Have you tried something like this:
function createWindow(){
chrome.windows.create({
url: chrome.extension.getURL("welcome.html"),
type: "panel",
focused: true,
top: 50,
left: 100,
width: 400,
height: 300
},
window => {
window.WindowType = "app";
window.alwaysOnTop = true;
}
);
}
Thanks,
Stefan vd