How to disable @Android google web app install banner ?
On android 6 phones chrome started to display install banner, now our C2 games are installed to phone when user should be playing games on our website.
We prefer to allow usage on website only. What setting should we change on page to prevent the installation. We have https site.
window.addEventListener('beforeinstallprompt', function(e) {
console.log('beforeinstallprompt Event fired');
e.preventDefault();
return false;
});