How to prevent resizing a Chrome Packaged App?

google-chrome-app, google-chrome-extension

Solution

Use the resizable flag.

chrome.app.window.create("YourPage.html", {
    "bounds": {
        "width": 320,
        "height": 240,
    },
    "resizable": false,
});

Problem

I've just jumped into developing apps for chrome, and just started with the "Hello World" example. My first thing I wanted to change is to prevent resizing of the window, I've searched and got nothing... :( So, is this even possible right now? Also, reading the documentation it says 'panel' is non-resizable,but at least in windows it is...

Original source