Currently it seems that the fullscreen ability can only be activated from a user action (mouse/keyboard event). Is there a way to circumvent this?
I have got it working with below code
chrome.app.runtime.onLaunched.addListener(function() { chrome.app.window.create('index.html', { 'width': 1024, 'height': 768 }, function(win) { win.maximize(); }); });