forked from OpenSprinkler/OpenSprinkler-App
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchrome.js
More file actions
23 lines (21 loc) · 719 Bytes
/
chrome.js
File metadata and controls
23 lines (21 loc) · 719 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*global chrome */
/* OpenSprinkler App
* Copyright (C) 2015 - present, Samer Albahra. All rights reserved.
*
* This file is part of the OpenSprinkler project <http://opensprinkler.com>.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License version 3 as
* published by the Free Software Foundation.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
chrome.app.runtime.onLaunched.addListener( function() {
chrome.app.window.create( "index.html", {
"bounds": {
"width": 942,
"height": 512
}
} );
} );