├── .eslintrc.json ├── .gitignore ├── LICENSE ├── README.md ├── config.json ├── package.json └── plugin.js /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3urobeat/steam-comment-bot-template-plugin/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3urobeat/steam-comment-bot-template-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3urobeat/steam-comment-bot-template-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3urobeat/steam-comment-bot-template-plugin/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- 1 | { 2 | "enabled": true 3 | } -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3urobeat/steam-comment-bot-template-plugin/HEAD/package.json -------------------------------------------------------------------------------- /plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3urobeat/steam-comment-bot-template-plugin/HEAD/plugin.js --------------------------------------------------------------------------------