mirror of
https://github.com/moonlight-stream/moonlight-chrome.git
synced 2025-08-18 00:56:38 +00:00
6 lines
172 B
JavaScript
6 lines
172 B
JavaScript
// just start the app in fullscreen
|
|
chrome.app.runtime.onLaunched.addListener(function() {
|
|
chrome.app.window.create('index.html', {
|
|
state: "normal",
|
|
});
|
|
}); |