mirror of
https://github.com/moonlight-stream/moonlight-chrome.git
synced 2025-08-17 16:46:31 +00:00
8 lines
193 B
JavaScript
8 lines
193 B
JavaScript
chrome.app.runtime.onLaunched.addListener(function() {
|
|
chrome.app.window.create('index.html', {
|
|
'bounds': {
|
|
'width': 400,
|
|
'height': 500
|
|
}
|
|
});
|
|
}); |