spongy/app/background.js

11 lines
201 B
JavaScript
Raw Normal View History

2014-10-23 21:21:54 -06:00
chrome.app.runtime.onLaunched.addListener(function() {
chrome.app.window.create('wirc.html', {
2014-10-27 11:51:46 -06:00
state: 'normal',
width: 775,
height: 400,
minWidth: 320,
minHeight: 160,
id: 'spongy'
2014-10-23 21:21:54 -06:00
})
})