Go to file
adithyagenie 3e331096eb
Bump tesseract.js to v5.1.0
Signed-off-by: adithyagenie <adithyagenie@gmail.com>
2024-06-16 08:13:34 +05:30
LICENSE License under AGPL 2023-08-18 21:17:36 +05:30
README.md Improve performance, usability and code readability. 2024-03-08 12:00:52 +05:30
userscript.js Bump tesseract.js to v5.1.0 2024-06-16 08:13:34 +05:30

skillrack-captcha-solver

Captcha solver for skillrack.

Use GreaseMonkey/TamperMonkey to run the script.

⚠️ Please disable the script if you are attending a test as it might lead to unintended effects.

⚠️ Attempting to navigate the page while the captcha solver is running may lead to unintended effects. If it gets stuck in a loop, closing and opening the tabs will fix it.


Optional username parsing

You don't need to do this unless you have a username containing '+' and numbers together.

The script handles most of the username checking by itself except when the username might contain special symbols which might mimic the captcha. You can fix this by replacing the USERNAME variable on the top of the script to match your username from the captcha image.

For example, if the captcha is:

abcd123+21@xyz

420+69=

change the first line (by visiting the greasemonkey/tampermonkey dashboard) as

const USERNAME = "abcd123+21@xyz";

and save the script.