从 C2 游戏 url 禁用 Android 游戏安装横幅的最佳方法

Best way to disable Android game install banner from C2 game url

如何禁用@Android google 网络应用程序安装横幅?

在 android 6 phone 秒 chrome 开始显示安装横幅,现在我们的 C2 游戏安装到 phone 当用户应该在我们的网站上玩游戏时.

我们更愿意只允许在网站上使用。我们应该在页面上更改什么设置以防止安装。我们有 https 站点。

window.addEventListener('beforeinstallprompt', function(e) {
  console.log('beforeinstallprompt Event fired');
  e.preventDefault();
  return false;
});