├── .gitignore ├── LICENSE ├── README.md ├── README.ru.md ├── assets ├── apply-style.png ├── apply-style.ru.png ├── jpeg-export.png ├── jpeg-export.ru.png ├── prepare-for-stock.png └── prepare-for-stock.ru.png ├── changelog.md ├── index.md ├── package.json ├── scripts ├── apply-style-1.0.6.js ├── apply-style-1.0.7.js ├── apply-style-1.0.8.js ├── apply-style-1.0.9.js ├── apply-style-v1.js ├── apply-style.js ├── jpeg-export.js └── prepare-for-stock.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugene-ga/ai-scripts/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugene-ga/ai-scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugene-ga/ai-scripts/HEAD/README.md -------------------------------------------------------------------------------- /README.ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugene-ga/ai-scripts/HEAD/README.ru.md -------------------------------------------------------------------------------- /assets/apply-style.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugene-ga/ai-scripts/HEAD/assets/apply-style.png -------------------------------------------------------------------------------- /assets/apply-style.ru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugene-ga/ai-scripts/HEAD/assets/apply-style.ru.png -------------------------------------------------------------------------------- /assets/jpeg-export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugene-ga/ai-scripts/HEAD/assets/jpeg-export.png -------------------------------------------------------------------------------- /assets/jpeg-export.ru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugene-ga/ai-scripts/HEAD/assets/jpeg-export.ru.png -------------------------------------------------------------------------------- /assets/prepare-for-stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugene-ga/ai-scripts/HEAD/assets/prepare-for-stock.png -------------------------------------------------------------------------------- /assets/prepare-for-stock.ru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugene-ga/ai-scripts/HEAD/assets/prepare-for-stock.ru.png -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugene-ga/ai-scripts/HEAD/index.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugene-ga/ai-scripts/HEAD/package.json -------------------------------------------------------------------------------- /scripts/apply-style-1.0.6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugene-ga/ai-scripts/HEAD/scripts/apply-style-1.0.6.js -------------------------------------------------------------------------------- /scripts/apply-style-1.0.7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugene-ga/ai-scripts/HEAD/scripts/apply-style-1.0.7.js -------------------------------------------------------------------------------- /scripts/apply-style-1.0.8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugene-ga/ai-scripts/HEAD/scripts/apply-style-1.0.8.js -------------------------------------------------------------------------------- /scripts/apply-style-1.0.9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugene-ga/ai-scripts/HEAD/scripts/apply-style-1.0.9.js -------------------------------------------------------------------------------- /scripts/apply-style-v1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugene-ga/ai-scripts/HEAD/scripts/apply-style-v1.js -------------------------------------------------------------------------------- /scripts/apply-style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugene-ga/ai-scripts/HEAD/scripts/apply-style.js -------------------------------------------------------------------------------- /scripts/jpeg-export.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugene-ga/ai-scripts/HEAD/scripts/jpeg-export.js -------------------------------------------------------------------------------- /scripts/prepare-for-stock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugene-ga/ai-scripts/HEAD/scripts/prepare-for-stock.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eugene-ga/ai-scripts/HEAD/yarn.lock --------------------------------------------------------------------------------