gpt4 book ai didi

background - 如何设置相对于屏幕的 chrome 应用程序大小

转载 作者:行者123 更新时间:2023-12-04 02:44:11 25 4
gpt4 key购买 nike

为什么我的代码不起作用?我正在尝试将我的应用程序的大小设置为屏幕的 80%,因为我希望它适合任何显示器,如果有更好的方法我想知道。

background.js:

chrome.app.runtime.onLaunched.addListener(function() {
chrome.app.window.create('index.html', {
'bounds': {
'width': window.screen.availWidth*0.8, // *0.8 is not working
'height': window.screen.availHeight*0.8
}
});
});

最佳答案

看来数字必须四舍五入,因为很多小数无法处理:

chrome.app.runtime.onLaunched.addListener(function() {
chrome.app.window.create('index.html', {
'bounds': {
'width': Math.round(window.screen.availWidth*0.8),
'height': Math.round(window.screen.availHeight*0.8)
}
});
});

关于background - 如何设置相对于屏幕的 chrome 应用程序大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19204517/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com