Zack Saadioui
4/24/2025
1
index.html
1
manifest.json
1
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
json
{
"name": "Weather Forecast",
"short_name": "Weather",
"start_url": "/index.html",
"display": "standalone",
"background_color": "#ffffff",
"theme_color": "#0000ff",
"icons": [
{
"src": "icon.png",
"sizes": "192x192",
"type": "image/png"
}
]
}
1
2
3
4
5
6
7
8
javascript
if ('serviceWorker' in navigator) {
window.addEventListener('load', () => {
navigator.serviceWorker.register('service-worker.js').then(() => {
console.log('Service Worker Registered');
});
});
}
Copyright © Arsturn 2025