blob: 290b43a0ee6929c268999f22f9a4494d3c049d8f (
plain)
1
2
3
4
5
6
7
8
9
10
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
chrome.app.runtime.onLaunched.addListener(function() {
chrome.app.window.create('main.html', {
'width': 800,
'height': 600
});
});
|