理悟万池
全部工具

DEV · PWA

PWA Manifest 生成器

填写应用信息自动生成标准 manifest.json 和 Service Worker 模板,快速配置渐进式 Web 应用。

应用名称
短名称
描述
起始 URL
Scope
显示模式
方向
主题色
背景色
图标 192x192 路径
图标 512x512 路径
语言
manifest.json
{
  "name": "My App",
  "short_name": "App",
  "description": "A progressive web application",
  "start_url": "/",
  "display": "standalone",
  "orientation": "any",
  "theme_color": "#4f8cff",
  "background_color": "#ffffff",
  "lang": "zh-CN",
  "scope": "/",
  "icons": [
    {
      "src": "/icons/icon-192.png",
      "sizes": "192x192",
      "type": "image/png"
    },
    {
      "src": "/icons/icon-512.png",
      "sizes": "512x512",
      "type": "image/png"
    }
  ]
}

填写应用信息自动生成 PWA manifest.json 和 Service Worker 模板,可直接用于 PWA 项目。