mirror of
https://github.com/clucraft/PriceGhost.git
synced 2026-04-26 01:06:23 +02:00
- Create ghost icon with gradient background and price tag - Add manifest.json with app metadata and icon references - Implement service worker with network-first caching strategy - Update index.html with PWA meta tags and SW registration Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
25 lines
585 B
JSON
25 lines
585 B
JSON
{
|
|
"name": "PriceGhost",
|
|
"short_name": "PriceGhost",
|
|
"description": "Track product prices and get notified when they drop",
|
|
"start_url": "/",
|
|
"display": "standalone",
|
|
"background_color": "#0f172a",
|
|
"theme_color": "#6366f1",
|
|
"orientation": "portrait-primary",
|
|
"icons": [
|
|
{
|
|
"src": "/icon.svg",
|
|
"sizes": "any",
|
|
"type": "image/svg+xml",
|
|
"purpose": "any"
|
|
},
|
|
{
|
|
"src": "/icon.svg",
|
|
"sizes": "512x512",
|
|
"type": "image/svg+xml",
|
|
"purpose": "maskable"
|
|
}
|
|
],
|
|
"categories": ["shopping", "finance", "utilities"]
|
|
}
|