Files
clock/public/manifest.json
Puechberty Arthur c061960e57 feat: add ClockApp and SettingsPanel components with customizable settings
- Implemented ClockApp component to display time based on user settings.
- Created SettingsPanel for users to adjust clock type, time format, timezone, and theme.
- Added hooks for managing time, settings persistence, and fullscreen functionality.
- Introduced types for clock settings and themes, including default settings.
- Integrated URL parameter parsing for sharing clock configurations.
- Enhanced user experience with loading states and visual transitions.
2026-03-30 20:27:33 +02:00

60 lines
1.5 KiB
JSON

{
"name": "Horloge en ligne — Heure exacte gratuite",
"short_name": "Horloge",
"description": "Horloge en ligne gratuite avec affichage plein écran. Horloge numérique ou analogique personnalisable avec plus de 30 fuseaux horaires et 12 thèmes.",
"start_url": "/?source=pwa",
"scope": "/",
"id": "/",
"display": "fullscreen",
"display_override": ["fullscreen", "standalone"],
"background_color": "#0f172a",
"theme_color": "#3b82f6",
"orientation": "any",
"icons": [
{
"src": "/icon-192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "any"
},
{
"src": "/icon-192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "maskable"
},
{
"src": "/icon-512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "any"
},
{
"src": "/icon-512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "maskable"
}
],
"categories": ["utilities", "productivity"],
"lang": "fr",
"dir": "ltr",
"prefer_related_applications": false,
"screenshots": [
{
"src": "/screenshot-desktop.png",
"sizes": "1920x1080",
"type": "image/png",
"form_factor": "wide",
"label": "Horloge numérique en mode plein écran"
},
{
"src": "/screenshot-mobile.png",
"sizes": "750x1334",
"type": "image/png",
"form_factor": "narrow",
"label": "Horloge en ligne sur mobile"
}
]
}