Opera GX Minimum Window Size
-
purefishmonke last edited by
I noticed while using
chrome.windows.create
while coding my extension, that Opera GX has an annoying minimum window width and height. My code looks like this:var h=630 var w=249 var launch=function(){chrome.windows.create({url:"/Scripts/core.html",type:"popup",height:h,width:w})};
When I run it on Chrome, it works fine, and the popup can be resized to as small as I want. When I run it on Opera GX, the window is locked to a minimum size, which messes up my elements, as they are designed for the size I intend. Is there a fix for this? If not, does anyone know why this is a feature?