├── .gitignore ├── CV.pdf ├── LICENSE ├── README.md ├── apply-form ├── changeTextInput.ts ├── clickNextButton.ts ├── fillBoolean.ts ├── fillFields.ts ├── fillMultipleChoiceFields.ts ├── fillTextFields.ts ├── insertHomeCity.ts ├── insertPhone.ts ├── uncheckFollowCompany.ts ├── uploadDocs.ts └── waitForNoError.ts ├── apply └── index.ts ├── fetch └── fetchJobLinksUser.ts ├── login └── index.ts ├── package.json ├── sample_config.ts ├── sample_cv.pdf ├── scripts └── apply.ts ├── selectors └── index.ts ├── tsconfig.json └── utils ├── ask.ts ├── buildUrl.ts └── wait.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaosilvalopes/linkedin-easy-apply-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /CV.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaosilvalopes/linkedin-easy-apply-bot/HEAD/CV.pdf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaosilvalopes/linkedin-easy-apply-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaosilvalopes/linkedin-easy-apply-bot/HEAD/README.md -------------------------------------------------------------------------------- /apply-form/changeTextInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaosilvalopes/linkedin-easy-apply-bot/HEAD/apply-form/changeTextInput.ts -------------------------------------------------------------------------------- /apply-form/clickNextButton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaosilvalopes/linkedin-easy-apply-bot/HEAD/apply-form/clickNextButton.ts -------------------------------------------------------------------------------- /apply-form/fillBoolean.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaosilvalopes/linkedin-easy-apply-bot/HEAD/apply-form/fillBoolean.ts -------------------------------------------------------------------------------- /apply-form/fillFields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaosilvalopes/linkedin-easy-apply-bot/HEAD/apply-form/fillFields.ts -------------------------------------------------------------------------------- /apply-form/fillMultipleChoiceFields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaosilvalopes/linkedin-easy-apply-bot/HEAD/apply-form/fillMultipleChoiceFields.ts -------------------------------------------------------------------------------- /apply-form/fillTextFields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaosilvalopes/linkedin-easy-apply-bot/HEAD/apply-form/fillTextFields.ts -------------------------------------------------------------------------------- /apply-form/insertHomeCity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaosilvalopes/linkedin-easy-apply-bot/HEAD/apply-form/insertHomeCity.ts -------------------------------------------------------------------------------- /apply-form/insertPhone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaosilvalopes/linkedin-easy-apply-bot/HEAD/apply-form/insertPhone.ts -------------------------------------------------------------------------------- /apply-form/uncheckFollowCompany.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaosilvalopes/linkedin-easy-apply-bot/HEAD/apply-form/uncheckFollowCompany.ts -------------------------------------------------------------------------------- /apply-form/uploadDocs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaosilvalopes/linkedin-easy-apply-bot/HEAD/apply-form/uploadDocs.ts -------------------------------------------------------------------------------- /apply-form/waitForNoError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaosilvalopes/linkedin-easy-apply-bot/HEAD/apply-form/waitForNoError.ts -------------------------------------------------------------------------------- /apply/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaosilvalopes/linkedin-easy-apply-bot/HEAD/apply/index.ts -------------------------------------------------------------------------------- /fetch/fetchJobLinksUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaosilvalopes/linkedin-easy-apply-bot/HEAD/fetch/fetchJobLinksUser.ts -------------------------------------------------------------------------------- /login/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaosilvalopes/linkedin-easy-apply-bot/HEAD/login/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaosilvalopes/linkedin-easy-apply-bot/HEAD/package.json -------------------------------------------------------------------------------- /sample_config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaosilvalopes/linkedin-easy-apply-bot/HEAD/sample_config.ts -------------------------------------------------------------------------------- /sample_cv.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaosilvalopes/linkedin-easy-apply-bot/HEAD/sample_cv.pdf -------------------------------------------------------------------------------- /scripts/apply.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaosilvalopes/linkedin-easy-apply-bot/HEAD/scripts/apply.ts -------------------------------------------------------------------------------- /selectors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaosilvalopes/linkedin-easy-apply-bot/HEAD/selectors/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaosilvalopes/linkedin-easy-apply-bot/HEAD/tsconfig.json -------------------------------------------------------------------------------- /utils/ask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaosilvalopes/linkedin-easy-apply-bot/HEAD/utils/ask.ts -------------------------------------------------------------------------------- /utils/buildUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaosilvalopes/linkedin-easy-apply-bot/HEAD/utils/buildUrl.ts -------------------------------------------------------------------------------- /utils/wait.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaosilvalopes/linkedin-easy-apply-bot/HEAD/utils/wait.ts --------------------------------------------------------------------------------