ComfyUI/frontend_extensions/missingModelsDownloader/package.json
fragmede 04556a53f4
Restore download API and add frontend extension for Missing Models dialog
Backend changes:
- Restored model download API endpoints in server.py
- Supports download, pause, resume, cancel operations
- Tracks download progress and history

Frontend extension package:
- Created standalone extension for ComfyUI frontend repository
- Automatically adds "Download" buttons to Missing Models dialog
- Includes repository of known model URLs (SDXL, SD1.5, VAEs, LoRAs, etc.)
- Shows real-time download progress in button (percentage)
- Supports custom URLs for unknown models
- "Download All" button for bulk downloads

The extension works with the separated frontend repository structure.
When missing models are detected, users can now download them directly
from the dialog without manually finding and moving files.

Installation instructions included in frontend_extensions/missingModelsDownloader/README.md

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-27 02:49:03 -07:00

11 lines
284 B
JSON

{
"name": "comfyui-missing-models-downloader",
"version": "1.0.0",
"description": "Adds download buttons to the Missing Models dialog in ComfyUI",
"main": "missingModelsDownloader.js",
"author": "ComfyUI",
"license": "MIT",
"comfyui": {
"extension_type": "web"
}
}