{
  "name": "TXTEDTR Text Editor",
  "short_name": "TXTEDTR",
  "description": "A small text editor with syntax highlighting, tabs and no build step.",

  "start_url": "./index.html",
  "scope": "./",
  "display": "standalone",

  "background_color": "#1e1f22",
  "theme_color": "#1e1f22",

  "icons": [
    { "src": "icon-192.png", "sizes": "192x192", "type": "image/png" },
    { "src": "icon-512.png", "sizes": "512x512", "type": "image/png" },
    { "src": "icon-maskable-512.png", "sizes": "512x512", "type": "image/png",
      "purpose": "maskable" }
  ],

  "launch_handler": { "client_mode": "focus-existing" },

  "file_handlers": [
    {
      "action": "./index.html",
      "accept": {
        "text/plain":       [".txt", ".log", ".text"],
        "text/html":        [".html", ".htm"],
        "text/css":         [".css", ".scss", ".less"],
        "text/javascript":  [".js", ".mjs", ".cjs", ".jsx"],
        "application/json": [".json"],
        "text/x-java":      [".java"],
        "text/x-python":    [".py"],
        "text/markdown":    [".md", ".markdown"],
        "application/sql":  [".sql"],
        "application/x-sh": [".sh", ".bash"],
        "application/xml":  [".xml", ".svg"],
        "application/yaml": [".yaml", ".yml"]
      }
    }
  ]
}
