├── .env.example ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ └── bug_report.md └── workflows │ └── codeql-analysis.yml ├── .gitignore ├── README.md ├── RUN.bat ├── VERSION.TXT ├── bootstrap.js ├── bun.lockb ├── driver └── __init__ ├── package.json ├── session └── __init__ ├── src ├── config │ └── index.ts ├── constants │ └── youtubeSelectors.ts ├── database │ └── init.ts ├── index.ts ├── lib │ ├── Bot │ │ └── YoutubeBot.ts │ ├── Browser.ts │ └── LoginYoutube.ts ├── models │ ├── Comment.ts │ ├── Session.ts │ └── index.ts ├── types │ └── index.ts └── utils │ ├── Logger.ts │ ├── banner.ts │ ├── delay.ts │ ├── dir │ └── checkSessionDir.ts │ ├── net │ └── index.ts │ ├── randomDelay.ts │ ├── scrollToBottom.ts │ ├── scrollToComments.ts │ ├── videos │ └── collectLinks.ts │ └── youtubeUtils.ts ├── tsconfig.json └── yarn.lock /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegal1337/YOMEN/HEAD/.env.example -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegal1337/YOMEN/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegal1337/YOMEN/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegal1337/YOMEN/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegal1337/YOMEN/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegal1337/YOMEN/HEAD/README.md -------------------------------------------------------------------------------- /RUN.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegal1337/YOMEN/HEAD/RUN.bat -------------------------------------------------------------------------------- /VERSION.TXT: -------------------------------------------------------------------------------- 1 | 2.3.7 2 | -------------------------------------------------------------------------------- /bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegal1337/YOMEN/HEAD/bootstrap.js -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegal1337/YOMEN/HEAD/bun.lockb -------------------------------------------------------------------------------- /driver/__init__: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegal1337/YOMEN/HEAD/package.json -------------------------------------------------------------------------------- /session/__init__: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegal1337/YOMEN/HEAD/src/config/index.ts -------------------------------------------------------------------------------- /src/constants/youtubeSelectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegal1337/YOMEN/HEAD/src/constants/youtubeSelectors.ts -------------------------------------------------------------------------------- /src/database/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegal1337/YOMEN/HEAD/src/database/init.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegal1337/YOMEN/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/lib/Bot/YoutubeBot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegal1337/YOMEN/HEAD/src/lib/Bot/YoutubeBot.ts -------------------------------------------------------------------------------- /src/lib/Browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegal1337/YOMEN/HEAD/src/lib/Browser.ts -------------------------------------------------------------------------------- /src/lib/LoginYoutube.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegal1337/YOMEN/HEAD/src/lib/LoginYoutube.ts -------------------------------------------------------------------------------- /src/models/Comment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegal1337/YOMEN/HEAD/src/models/Comment.ts -------------------------------------------------------------------------------- /src/models/Session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegal1337/YOMEN/HEAD/src/models/Session.ts -------------------------------------------------------------------------------- /src/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegal1337/YOMEN/HEAD/src/models/index.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegal1337/YOMEN/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /src/utils/Logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegal1337/YOMEN/HEAD/src/utils/Logger.ts -------------------------------------------------------------------------------- /src/utils/banner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegal1337/YOMEN/HEAD/src/utils/banner.ts -------------------------------------------------------------------------------- /src/utils/delay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegal1337/YOMEN/HEAD/src/utils/delay.ts -------------------------------------------------------------------------------- /src/utils/dir/checkSessionDir.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegal1337/YOMEN/HEAD/src/utils/dir/checkSessionDir.ts -------------------------------------------------------------------------------- /src/utils/net/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegal1337/YOMEN/HEAD/src/utils/net/index.ts -------------------------------------------------------------------------------- /src/utils/randomDelay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegal1337/YOMEN/HEAD/src/utils/randomDelay.ts -------------------------------------------------------------------------------- /src/utils/scrollToBottom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegal1337/YOMEN/HEAD/src/utils/scrollToBottom.ts -------------------------------------------------------------------------------- /src/utils/scrollToComments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegal1337/YOMEN/HEAD/src/utils/scrollToComments.ts -------------------------------------------------------------------------------- /src/utils/videos/collectLinks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegal1337/YOMEN/HEAD/src/utils/videos/collectLinks.ts -------------------------------------------------------------------------------- /src/utils/youtubeUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegal1337/YOMEN/HEAD/src/utils/youtubeUtils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegal1337/YOMEN/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegal1337/YOMEN/HEAD/yarn.lock --------------------------------------------------------------------------------