moonlight-chrome/static/js/background.js
2016-02-16 11:44:24 -05:00

6 lines
176 B
JavaScript

// just start the app in fullscreen
chrome.app.runtime.onLaunched.addListener(function() {
chrome.app.window.create('index.html', {
state: "fullscreen",
});
});