我们可以在 Outerbounds 中为 Chrome 应用程序设置的最大宽度是多少?
What is the maximum width we can set in Outerbounds for Chrome app?
我有一个chrome盒子可以支持两个显示器。对于外部尺寸,我可以使用尺寸为 3840x1080(宽度 =3840,高度 =1080)的单个 chrome 应用程序吗?
我试过了,但是不行,有什么办法吗?
在我打开 chrome 应用程序
后,单个 chrome 应用程序可立即在两台显示器上伸展
如果您想为 window 设置最小高度或宽度,可以在 bounds specification 中使用 minHeight
或 minWidth
。
chrome.app.runtime.onLaunched.addListener(
function() {
chrome.app.window.create('index.html', {
outerBounds: {
width: 3840,
height: 1080,
minWidth: 3840,
minHeight: 1080
}
});
});
我有一个chrome盒子可以支持两个显示器。对于外部尺寸,我可以使用尺寸为 3840x1080(宽度 =3840,高度 =1080)的单个 chrome 应用程序吗?
我试过了,但是不行,有什么办法吗?
在我打开 chrome 应用程序
如果您想为 window 设置最小高度或宽度,可以在 bounds specification 中使用 minHeight
或 minWidth
。
chrome.app.runtime.onLaunched.addListener(
function() {
chrome.app.window.create('index.html', {
outerBounds: {
width: 3840,
height: 1080,
minWidth: 3840,
minHeight: 1080
}
});
});