我们可以在Chrome应用的Outerbounds中设置的最大宽度是多少?

时间:2015-11-04 00:40:31

标签: javascript html google-chrome-app google-chrome-os

我有一个可以支持两个显示器的镀铬盒。对于外部尺寸,我可以使用尺寸为3840x1080(宽度= 3840,高度= 1080)的单个镀铬应用。

我尝试了这个但是没有用,有没有办法做到这一点?

我打开Chrome应用程序后立即在两台显示器上拉伸单铬应用程序

1 个答案:

答案 0 :(得分:1)

如果您想要窗口的最小高度或宽度,可以在bounds specification中使用minHeightminWidth

chrome.app.runtime.onLaunched.addListener(
  function() {
    chrome.app.window.create('index.html', { 
        outerBounds: { 
            width: 3840,
            height: 1080,
            minWidth: 3840,
            minHeight: 1080
         } 
    }); 
  });