3

如何在显示屏中创建充满可用空间的新窗口。

function CreateWindow () {
    chrome.app.window.create("Spreadsheet.html" , {
        "bounds"    :   {
            "width" :   500,          // need full width and height
            "height":   400 
        }
    });
}

chrome.app.runtime.onLaunched.addListener(CreateWindow);
4

2 回答 2

7

创建最大化的窗口以使用所有可用的屏幕空间。

chrome.app.window.create("Spreadsheet.html" , { state: 'maximized'}

有关更多详细信息,请参阅应用程序窗口文档

于 2013-09-20T18:30:32.340 回答
2

尽管您可以使用以下代码,但您无法访问 window.innerWidth 和 height

function CreateWindow () {
    chrome.app.window.create("Spreadsheet.html" , {
        "bounds"    :   {
            "width" :   window.screen.availWidth,
            "height":   window.screen.availHeight   
        }       
    });
}

chrome.app.runtime.onLaunched.addListener(CreateWindow);
于 2013-09-20T08:34:34.570 回答