如何在显示屏幕中创建充满可用空间的新窗口。
function CreateWindow () {
chrome.app.window.create("Spreadsheet.html" , {
"bounds" : {
"width" : 500, // need full width and height
"height": 400
}
});
}
chrome.app.runtime.onLaunched.addListener(CreateWindow);
答案 0 :(得分:7)
创建最大化窗口以使用所有可用屏幕空间。
chrome.app.window.create("Spreadsheet.html" , { state: 'maximized'}
有关详细信息,请参阅app window documentation。
答案 1 :(得分:2)
虽然您可以使用以下代码
,但您无法访问window.innerWidth和heightfunction CreateWindow () {
chrome.app.window.create("Spreadsheet.html" , {
"bounds" : {
"width" : window.screen.availWidth,
"height": window.screen.availHeight
}
});
}
chrome.app.runtime.onLaunched.addListener(CreateWindow);