有没有办法检测用户是否在主屏幕上添加了网络应用程序

Is there any way to detect if a user has added a web app to their home screen?

本文关键字:屏幕 添加 应用程序 网络 检测 用户 是否 有没有      更新时间:2023-09-26

我在网站上使用iOS跳板"添加到主屏幕"通知,该通知根据特定用户信息显示。如果用户已经将网络应用程序添加到主屏幕,我只是不希望触发弹出窗口。

有什么方法可以检测到这一点吗?

您应该能够使用查看是全屏还是在浏览器中

if (navigator.standalone) {
    alert ('Running full screen');
} else {
    alert ('Running in a browser');
}

或者,另一种方法是查看窗口大小,看看周围是否有铬。