├── .gitignore ├── LICENSE ├── README.md ├── javascript ├── easy_prompt_selector.js └── js-yaml.min.js ├── scripts ├── easy_prompt_selector.py ├── settings.py └── setup.py ├── style.css ├── tags ├── 人物.yml ├── 人物_五官.yml ├── 人物_头发.yml ├── 人物_表情.yml ├── 服装.yml ├── 画质.yml ├── 视线.yml └── 视角.yml └── tags_examples ├── 人.yml ├── 人_顔.yml └── 人_髪.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mglray/easy-prompt-selector-zh-cn/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mglray/easy-prompt-selector-zh-cn/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Easy Prompt Selector 2 | 3 | 4 | -------------------------------------------------------------------------------- /javascript/easy_prompt_selector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mglray/easy-prompt-selector-zh-cn/HEAD/javascript/easy_prompt_selector.js -------------------------------------------------------------------------------- /javascript/js-yaml.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mglray/easy-prompt-selector-zh-cn/HEAD/javascript/js-yaml.min.js -------------------------------------------------------------------------------- /scripts/easy_prompt_selector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mglray/easy-prompt-selector-zh-cn/HEAD/scripts/easy_prompt_selector.py -------------------------------------------------------------------------------- /scripts/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mglray/easy-prompt-selector-zh-cn/HEAD/scripts/settings.py -------------------------------------------------------------------------------- /scripts/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mglray/easy-prompt-selector-zh-cn/HEAD/scripts/setup.py -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mglray/easy-prompt-selector-zh-cn/HEAD/style.css -------------------------------------------------------------------------------- /tags/人物.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mglray/easy-prompt-selector-zh-cn/HEAD/tags/人物.yml -------------------------------------------------------------------------------- /tags/人物_五官.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mglray/easy-prompt-selector-zh-cn/HEAD/tags/人物_五官.yml -------------------------------------------------------------------------------- /tags/人物_头发.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mglray/easy-prompt-selector-zh-cn/HEAD/tags/人物_头发.yml -------------------------------------------------------------------------------- /tags/人物_表情.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mglray/easy-prompt-selector-zh-cn/HEAD/tags/人物_表情.yml -------------------------------------------------------------------------------- /tags/服装.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mglray/easy-prompt-selector-zh-cn/HEAD/tags/服装.yml -------------------------------------------------------------------------------- /tags/画质.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mglray/easy-prompt-selector-zh-cn/HEAD/tags/画质.yml -------------------------------------------------------------------------------- /tags/视线.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mglray/easy-prompt-selector-zh-cn/HEAD/tags/视线.yml -------------------------------------------------------------------------------- /tags/视角.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mglray/easy-prompt-selector-zh-cn/HEAD/tags/视角.yml -------------------------------------------------------------------------------- /tags_examples/人.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mglray/easy-prompt-selector-zh-cn/HEAD/tags_examples/人.yml -------------------------------------------------------------------------------- /tags_examples/人_顔.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mglray/easy-prompt-selector-zh-cn/HEAD/tags_examples/人_顔.yml -------------------------------------------------------------------------------- /tags_examples/人_髪.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mglray/easy-prompt-selector-zh-cn/HEAD/tags_examples/人_髪.yml --------------------------------------------------------------------------------