I am trying to make Add to Home Screen banner with my Asp.net project My Index.js is
// Make sure we are accessing over https, if not redirect
if ((!location.port || location.port === "80") && location.protocol !== "https:" && location.host !== "localhost") {
location.protocol = "https:";
}
if (navigator.serviceWorker) {
navigator.serviceWorker.register('sw.js').then(function (registration) {
console.log('ServiceWorker registration successful with scope:', registration.scope);
}).catch(function (error) {
console.log('ServiceWorker registration failed:', error);
});
}
and my Sw.js is
console.log('I am a Service Worker!');
self.addEventListener('install', function () {
self.skipWaiting();
});
self.addEventListener('activate', function (event) {
event.waitUntil(clients.claim());
});
and my Manifest file is like
{
"name": "App_Name",
"short_name": "APP",
"icons": [
{
"src": "120x120.png",
"type": "image/png",
"sizes": "128x128"
},
{
"src": "152x152.png",
"type": "image/png",
"sizes": "152x152"
},
{
"src": "144x144.png",
"type": "image/png",
"sizes": "144x144"
},
{
"src": "192x192.png",
"type": "image/png",
"sizes": "192x192"
},
{
"src": "192x192.png",
"type": "image/png",
"sizes": "256x256"
},
{
"src": "192x192.png",
"type": "image/png",
"sizes": "512x512"
}
],
"start_url": "Welcome.aspx?launcher=true",
"scope": "/",
"display": "standalone",
"orientation": "portrait",
"background_color": "#aac73c ",
"theme_color": "#63528a"
}
This Works when click "Add to home Screen" form Devtool in Application Tab. but it cannot show a Popup of add to home screen like this.
please advise... Thanks in Advance
Browsers manages when to show the App Install Banner (aka the "Add to Homescreen" prompt). I guess they base it on how much the user has interacted with the app (these heuristics/criteria are different per browser and may also change from time to time).
For development purposes, as long as it worked when clicking DevTools' "Add to Homescreen", you can be confident that it will work on other devices as well.
There is also a way to bypass these browser heuristics and just show the App Install Banner right away. This is hidden behind a flag in Chrome, so go to
chrome://flags
and look for "Bypass user engagement checks", and enable that flag.