- Register service worker for offline caching (app shell + API responses) - Link manifest.json in index.html with updated theme colors - Update manifest start_url to /app/dashboard for PWA experience - Add comprehensive team management CSS with responsive breakpoints - Add alert, loading, and danger button styles - Mobile-first responsive layout for team list and detail views
33 lines
788 B
JSON
33 lines
788 B
JSON
{
|
|
"name": "Scripter — Write Faster",
|
|
"short_name": "Scripter",
|
|
"description": "Professional screenplay editor with real-time collaboration",
|
|
"start_url": "/app/dashboard",
|
|
"display": "standalone",
|
|
"background_color": "#0a0a0a",
|
|
"theme_color": "#0a0a0a",
|
|
"orientation": "any",
|
|
"icons": [
|
|
{
|
|
"src": "/src-tauri/128x128.png",
|
|
"sizes": "128x128",
|
|
"type": "image/png",
|
|
"purpose": "any maskable"
|
|
},
|
|
{
|
|
"src": "/src-tauri/128x128.png",
|
|
"sizes": "192x192",
|
|
"type": "image/png",
|
|
"purpose": "any maskable"
|
|
},
|
|
{
|
|
"src": "/src-tauri/128x128.png",
|
|
"sizes": "512x512",
|
|
"type": "image/png",
|
|
"purpose": "any maskable"
|
|
}
|
|
],
|
|
"categories": ["productivity", "writer"],
|
|
"screenshots": []
|
|
}
|