├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── question.md │ └── tfjs-model-recommendation.md ├── .gitignore ├── .npmignore ├── README.md ├── demos ├── solve.js └── token.js ├── hcaptcha.js ├── images └── demo.gif ├── package.json └── src ├── useragents.json └── utils.js /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aw1875/puppeteer-hcaptcha/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aw1875/puppeteer-hcaptcha/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/tfjs-model-recommendation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aw1875/puppeteer-hcaptcha/HEAD/.github/ISSUE_TEMPLATE/tfjs-model-recommendation.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *Test.js -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .vscode 3 | .cache 4 | *Test.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aw1875/puppeteer-hcaptcha/HEAD/README.md -------------------------------------------------------------------------------- /demos/solve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aw1875/puppeteer-hcaptcha/HEAD/demos/solve.js -------------------------------------------------------------------------------- /demos/token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aw1875/puppeteer-hcaptcha/HEAD/demos/token.js -------------------------------------------------------------------------------- /hcaptcha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aw1875/puppeteer-hcaptcha/HEAD/hcaptcha.js -------------------------------------------------------------------------------- /images/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aw1875/puppeteer-hcaptcha/HEAD/images/demo.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aw1875/puppeteer-hcaptcha/HEAD/package.json -------------------------------------------------------------------------------- /src/useragents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aw1875/puppeteer-hcaptcha/HEAD/src/useragents.json -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aw1875/puppeteer-hcaptcha/HEAD/src/utils.js --------------------------------------------------------------------------------