blob: 854d4d772a9ce627f40953f3b159c350f46ccf7f [file] [log] [blame]
/*globals chrome */
'use strict';
chrome.app.runtime.onLaunched.addListener(function () {
chrome.app.window.create('./test.html', {
'width': 1000,
'height': 800
});
});