├── .github └── workflows │ └── publish.yml ├── .gitignore ├── Install_Plugin ├── 3e6d64e0 │ ├── Icons │ │ ├── comfy.png │ │ ├── comfy@1x.png │ │ ├── comfy@2x.png │ │ ├── dark.png │ │ ├── dark@1x.png │ │ ├── dark@2x.png │ │ ├── settings.png │ │ ├── settings@1x.png │ │ └── settings@2x.png │ ├── assets │ │ ├── defaultImg-BcFEYa9o.jpg │ │ ├── index-B_-tWO9a.js │ │ └── index-C3nL6Ca2.css │ ├── cp │ │ ├── Updater.bat │ │ ├── Updater.sh │ │ └── Updater │ │ │ ├── Updater.bat │ │ │ └── Updater.sh │ ├── debug.json │ ├── index.html │ └── manifest.json ├── 3e6d64e0_PS.ccx └── installer.py ├── License ├── README.md ├── __init__.py ├── data ├── PreviewFiles │ ├── pr1.jpg │ ├── pr2.webp │ ├── pr3.webp │ └── version.json ├── ps_inputs │ ├── PS_canvas.png │ ├── PS_mask.png │ └── config.json └── workflows │ ├── sd15_en-US.json │ ├── sd15_ja-JP.json │ ├── sd15_ko-KR.json │ ├── sd15_zh-CN.json │ └── sd15_zh-TW.json ├── js ├── connection.js ├── manager.js ├── nodestyle.js └── photopea-editor.js ├── py ├── Backend.py ├── nodePlugin.py └── nodeRemoteConnection.py └── pyproject.toml /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimaNzrii/comfyui-photoshop/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimaNzrii/comfyui-photoshop/HEAD/.gitignore -------------------------------------------------------------------------------- /Install_Plugin/3e6d64e0/Icons/comfy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimaNzrii/comfyui-photoshop/HEAD/Install_Plugin/3e6d64e0/Icons/comfy.png -------------------------------------------------------------------------------- /Install_Plugin/3e6d64e0/Icons/comfy@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimaNzrii/comfyui-photoshop/HEAD/Install_Plugin/3e6d64e0/Icons/comfy@1x.png -------------------------------------------------------------------------------- /Install_Plugin/3e6d64e0/Icons/comfy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimaNzrii/comfyui-photoshop/HEAD/Install_Plugin/3e6d64e0/Icons/comfy@2x.png -------------------------------------------------------------------------------- /Install_Plugin/3e6d64e0/Icons/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimaNzrii/comfyui-photoshop/HEAD/Install_Plugin/3e6d64e0/Icons/dark.png -------------------------------------------------------------------------------- /Install_Plugin/3e6d64e0/Icons/dark@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimaNzrii/comfyui-photoshop/HEAD/Install_Plugin/3e6d64e0/Icons/dark@1x.png -------------------------------------------------------------------------------- /Install_Plugin/3e6d64e0/Icons/dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimaNzrii/comfyui-photoshop/HEAD/Install_Plugin/3e6d64e0/Icons/dark@2x.png -------------------------------------------------------------------------------- /Install_Plugin/3e6d64e0/Icons/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimaNzrii/comfyui-photoshop/HEAD/Install_Plugin/3e6d64e0/Icons/settings.png -------------------------------------------------------------------------------- /Install_Plugin/3e6d64e0/Icons/settings@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimaNzrii/comfyui-photoshop/HEAD/Install_Plugin/3e6d64e0/Icons/settings@1x.png -------------------------------------------------------------------------------- /Install_Plugin/3e6d64e0/Icons/settings@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimaNzrii/comfyui-photoshop/HEAD/Install_Plugin/3e6d64e0/Icons/settings@2x.png -------------------------------------------------------------------------------- /Install_Plugin/3e6d64e0/assets/defaultImg-BcFEYa9o.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimaNzrii/comfyui-photoshop/HEAD/Install_Plugin/3e6d64e0/assets/defaultImg-BcFEYa9o.jpg -------------------------------------------------------------------------------- /Install_Plugin/3e6d64e0/assets/index-B_-tWO9a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimaNzrii/comfyui-photoshop/HEAD/Install_Plugin/3e6d64e0/assets/index-B_-tWO9a.js -------------------------------------------------------------------------------- /Install_Plugin/3e6d64e0/assets/index-C3nL6Ca2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimaNzrii/comfyui-photoshop/HEAD/Install_Plugin/3e6d64e0/assets/index-C3nL6Ca2.css -------------------------------------------------------------------------------- /Install_Plugin/3e6d64e0/cp/Updater.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimaNzrii/comfyui-photoshop/HEAD/Install_Plugin/3e6d64e0/cp/Updater.bat -------------------------------------------------------------------------------- /Install_Plugin/3e6d64e0/cp/Updater.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimaNzrii/comfyui-photoshop/HEAD/Install_Plugin/3e6d64e0/cp/Updater.sh -------------------------------------------------------------------------------- /Install_Plugin/3e6d64e0/cp/Updater/Updater.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimaNzrii/comfyui-photoshop/HEAD/Install_Plugin/3e6d64e0/cp/Updater/Updater.bat -------------------------------------------------------------------------------- /Install_Plugin/3e6d64e0/cp/Updater/Updater.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimaNzrii/comfyui-photoshop/HEAD/Install_Plugin/3e6d64e0/cp/Updater/Updater.sh -------------------------------------------------------------------------------- /Install_Plugin/3e6d64e0/debug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimaNzrii/comfyui-photoshop/HEAD/Install_Plugin/3e6d64e0/debug.json -------------------------------------------------------------------------------- /Install_Plugin/3e6d64e0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimaNzrii/comfyui-photoshop/HEAD/Install_Plugin/3e6d64e0/index.html -------------------------------------------------------------------------------- /Install_Plugin/3e6d64e0/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimaNzrii/comfyui-photoshop/HEAD/Install_Plugin/3e6d64e0/manifest.json -------------------------------------------------------------------------------- /Install_Plugin/3e6d64e0_PS.ccx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimaNzrii/comfyui-photoshop/HEAD/Install_Plugin/3e6d64e0_PS.ccx -------------------------------------------------------------------------------- /Install_Plugin/installer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimaNzrii/comfyui-photoshop/HEAD/Install_Plugin/installer.py -------------------------------------------------------------------------------- /License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimaNzrii/comfyui-photoshop/HEAD/License -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimaNzrii/comfyui-photoshop/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimaNzrii/comfyui-photoshop/HEAD/__init__.py -------------------------------------------------------------------------------- /data/PreviewFiles/pr1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimaNzrii/comfyui-photoshop/HEAD/data/PreviewFiles/pr1.jpg -------------------------------------------------------------------------------- /data/PreviewFiles/pr2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimaNzrii/comfyui-photoshop/HEAD/data/PreviewFiles/pr2.webp -------------------------------------------------------------------------------- /data/PreviewFiles/pr3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimaNzrii/comfyui-photoshop/HEAD/data/PreviewFiles/pr3.webp -------------------------------------------------------------------------------- /data/PreviewFiles/version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimaNzrii/comfyui-photoshop/HEAD/data/PreviewFiles/version.json -------------------------------------------------------------------------------- /data/ps_inputs/PS_canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimaNzrii/comfyui-photoshop/HEAD/data/ps_inputs/PS_canvas.png -------------------------------------------------------------------------------- /data/ps_inputs/PS_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimaNzrii/comfyui-photoshop/HEAD/data/ps_inputs/PS_mask.png -------------------------------------------------------------------------------- /data/ps_inputs/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimaNzrii/comfyui-photoshop/HEAD/data/ps_inputs/config.json -------------------------------------------------------------------------------- /data/workflows/sd15_en-US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimaNzrii/comfyui-photoshop/HEAD/data/workflows/sd15_en-US.json -------------------------------------------------------------------------------- /data/workflows/sd15_ja-JP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimaNzrii/comfyui-photoshop/HEAD/data/workflows/sd15_ja-JP.json -------------------------------------------------------------------------------- /data/workflows/sd15_ko-KR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimaNzrii/comfyui-photoshop/HEAD/data/workflows/sd15_ko-KR.json -------------------------------------------------------------------------------- /data/workflows/sd15_zh-CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimaNzrii/comfyui-photoshop/HEAD/data/workflows/sd15_zh-CN.json -------------------------------------------------------------------------------- /data/workflows/sd15_zh-TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimaNzrii/comfyui-photoshop/HEAD/data/workflows/sd15_zh-TW.json -------------------------------------------------------------------------------- /js/connection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimaNzrii/comfyui-photoshop/HEAD/js/connection.js -------------------------------------------------------------------------------- /js/manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimaNzrii/comfyui-photoshop/HEAD/js/manager.js -------------------------------------------------------------------------------- /js/nodestyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimaNzrii/comfyui-photoshop/HEAD/js/nodestyle.js -------------------------------------------------------------------------------- /js/photopea-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimaNzrii/comfyui-photoshop/HEAD/js/photopea-editor.js -------------------------------------------------------------------------------- /py/Backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimaNzrii/comfyui-photoshop/HEAD/py/Backend.py -------------------------------------------------------------------------------- /py/nodePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimaNzrii/comfyui-photoshop/HEAD/py/nodePlugin.py -------------------------------------------------------------------------------- /py/nodeRemoteConnection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimaNzrii/comfyui-photoshop/HEAD/py/nodeRemoteConnection.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NimaNzrii/comfyui-photoshop/HEAD/pyproject.toml --------------------------------------------------------------------------------