moonlight-chrome/static/js/background.js
2016-05-06 13:36:10 -04:00

8 lines
192 B
JavaScript

chrome.app.runtime.onLaunched.addListener(function() {
chrome.app.window.create('index.html', {
state: "normal",
bounds: {
width: 850, height: 500
}
});
});