├── .gitignore ├── .vscode └── launch.json ├── LICENSE ├── README.md ├── README_zh.md ├── assets └── icon.png ├── demo-plugin ├── character-workflow │ ├── avatar.png │ ├── book.html │ ├── index.js │ └── package.json ├── comfyui-workflow-api-01 │ ├── avatar.png │ ├── index.js │ └── package.json ├── draw-design │ ├── avatar.png │ ├── index.js │ └── package.json ├── model-viewer │ ├── index.js │ └── package.json ├── motioncanvas │ └── README.md └── picture-book │ ├── avatar.png │ ├── book.html │ ├── index.js │ └── package.json ├── doc ├── 11月17日comfyui-plugin - 第一组测试.mp4 ├── 2.png ├── 640.png └── design.pptx ├── package.json ├── src ├── components │ ├── Common.ts │ ├── InputBlock.tsx │ ├── InputCascader.tsx │ ├── InputTag.tsx │ ├── Inputs.tsx │ ├── Item.tsx │ ├── ItemList.tsx │ ├── OutputImages.tsx │ ├── OutputPrompts.tsx │ ├── Setup.tsx │ └── SuperBtn.tsx ├── i18n │ ├── config.ts │ ├── en.json │ └── zh.json ├── main.ts ├── main │ ├── ipc.ts │ └── server.ts ├── pages │ ├── draw │ │ ├── index.css │ │ ├── index.html │ │ └── index.tsx │ └── home │ │ ├── index.css │ │ ├── index.html │ │ └── index.tsx ├── preload.ts └── preload │ └── ComfyApi.ts ├── tsconfig.json └── webpack.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-plugins/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-plugins/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-plugins/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-plugins/HEAD/README.md -------------------------------------------------------------------------------- /README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-plugins/HEAD/README_zh.md -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-plugins/HEAD/assets/icon.png -------------------------------------------------------------------------------- /demo-plugin/character-workflow/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-plugins/HEAD/demo-plugin/character-workflow/avatar.png -------------------------------------------------------------------------------- /demo-plugin/character-workflow/book.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-plugins/HEAD/demo-plugin/character-workflow/book.html -------------------------------------------------------------------------------- /demo-plugin/character-workflow/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-plugins/HEAD/demo-plugin/character-workflow/index.js -------------------------------------------------------------------------------- /demo-plugin/character-workflow/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-plugins/HEAD/demo-plugin/character-workflow/package.json -------------------------------------------------------------------------------- /demo-plugin/comfyui-workflow-api-01/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-plugins/HEAD/demo-plugin/comfyui-workflow-api-01/avatar.png -------------------------------------------------------------------------------- /demo-plugin/comfyui-workflow-api-01/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-plugins/HEAD/demo-plugin/comfyui-workflow-api-01/index.js -------------------------------------------------------------------------------- /demo-plugin/comfyui-workflow-api-01/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-plugins/HEAD/demo-plugin/comfyui-workflow-api-01/package.json -------------------------------------------------------------------------------- /demo-plugin/draw-design/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-plugins/HEAD/demo-plugin/draw-design/avatar.png -------------------------------------------------------------------------------- /demo-plugin/draw-design/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-plugins/HEAD/demo-plugin/draw-design/index.js -------------------------------------------------------------------------------- /demo-plugin/draw-design/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-plugins/HEAD/demo-plugin/draw-design/package.json -------------------------------------------------------------------------------- /demo-plugin/model-viewer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-plugins/HEAD/demo-plugin/model-viewer/index.js -------------------------------------------------------------------------------- /demo-plugin/model-viewer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-plugins/HEAD/demo-plugin/model-viewer/package.json -------------------------------------------------------------------------------- /demo-plugin/motioncanvas/README.md: -------------------------------------------------------------------------------- 1 | https://motioncanvas.io/ -------------------------------------------------------------------------------- /demo-plugin/picture-book/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-plugins/HEAD/demo-plugin/picture-book/avatar.png -------------------------------------------------------------------------------- /demo-plugin/picture-book/book.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-plugins/HEAD/demo-plugin/picture-book/book.html -------------------------------------------------------------------------------- /demo-plugin/picture-book/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-plugins/HEAD/demo-plugin/picture-book/index.js -------------------------------------------------------------------------------- /demo-plugin/picture-book/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-plugins/HEAD/demo-plugin/picture-book/package.json -------------------------------------------------------------------------------- /doc/11月17日comfyui-plugin - 第一组测试.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-plugins/HEAD/doc/11月17日comfyui-plugin - 第一组测试.mp4 -------------------------------------------------------------------------------- /doc/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-plugins/HEAD/doc/2.png -------------------------------------------------------------------------------- /doc/640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-plugins/HEAD/doc/640.png -------------------------------------------------------------------------------- /doc/design.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-plugins/HEAD/doc/design.pptx -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-plugins/HEAD/package.json -------------------------------------------------------------------------------- /src/components/Common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-plugins/HEAD/src/components/Common.ts -------------------------------------------------------------------------------- /src/components/InputBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-plugins/HEAD/src/components/InputBlock.tsx -------------------------------------------------------------------------------- /src/components/InputCascader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-plugins/HEAD/src/components/InputCascader.tsx -------------------------------------------------------------------------------- /src/components/InputTag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-plugins/HEAD/src/components/InputTag.tsx -------------------------------------------------------------------------------- /src/components/Inputs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-plugins/HEAD/src/components/Inputs.tsx -------------------------------------------------------------------------------- /src/components/Item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-plugins/HEAD/src/components/Item.tsx -------------------------------------------------------------------------------- /src/components/ItemList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-plugins/HEAD/src/components/ItemList.tsx -------------------------------------------------------------------------------- /src/components/OutputImages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-plugins/HEAD/src/components/OutputImages.tsx -------------------------------------------------------------------------------- /src/components/OutputPrompts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-plugins/HEAD/src/components/OutputPrompts.tsx -------------------------------------------------------------------------------- /src/components/Setup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-plugins/HEAD/src/components/Setup.tsx -------------------------------------------------------------------------------- /src/components/SuperBtn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-plugins/HEAD/src/components/SuperBtn.tsx -------------------------------------------------------------------------------- /src/i18n/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-plugins/HEAD/src/i18n/config.ts -------------------------------------------------------------------------------- /src/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-plugins/HEAD/src/i18n/en.json -------------------------------------------------------------------------------- /src/i18n/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-plugins/HEAD/src/i18n/zh.json -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-plugins/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/main/ipc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-plugins/HEAD/src/main/ipc.ts -------------------------------------------------------------------------------- /src/main/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-plugins/HEAD/src/main/server.ts -------------------------------------------------------------------------------- /src/pages/draw/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-plugins/HEAD/src/pages/draw/index.css -------------------------------------------------------------------------------- /src/pages/draw/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-plugins/HEAD/src/pages/draw/index.html -------------------------------------------------------------------------------- /src/pages/draw/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-plugins/HEAD/src/pages/draw/index.tsx -------------------------------------------------------------------------------- /src/pages/home/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-plugins/HEAD/src/pages/home/index.css -------------------------------------------------------------------------------- /src/pages/home/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-plugins/HEAD/src/pages/home/index.html -------------------------------------------------------------------------------- /src/pages/home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-plugins/HEAD/src/pages/home/index.tsx -------------------------------------------------------------------------------- /src/preload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-plugins/HEAD/src/preload.ts -------------------------------------------------------------------------------- /src/preload/ComfyApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-plugins/HEAD/src/preload/ComfyApi.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-plugins/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-plugins/HEAD/webpack.config.ts --------------------------------------------------------------------------------