├── .gitignore ├── .prettierrc.json ├── LICENSE ├── README.md ├── example └── app.js ├── index.js ├── package.json ├── src ├── constants.js └── recaptcha-bypass.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | .idea -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0ftik3/recaptcha-bypass/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0ftik3/recaptcha-bypass/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0ftik3/recaptcha-bypass/HEAD/README.md -------------------------------------------------------------------------------- /example/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0ftik3/recaptcha-bypass/HEAD/example/app.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./src/recaptcha-bypass') 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0ftik3/recaptcha-bypass/HEAD/package.json -------------------------------------------------------------------------------- /src/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0ftik3/recaptcha-bypass/HEAD/src/constants.js -------------------------------------------------------------------------------- /src/recaptcha-bypass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0ftik3/recaptcha-bypass/HEAD/src/recaptcha-bypass.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0ftik3/recaptcha-bypass/HEAD/yarn.lock --------------------------------------------------------------------------------