https://github.com/arpandaze/tms-captcha
Browser Extension to locally solve captchas on NEPSE TMS using statistical approach.
https://github.com/arpandaze/tms-captcha
captcha-solver nepse tms
Last synced: about 2 months ago
JSON representation
Browser Extension to locally solve captchas on NEPSE TMS using statistical approach.
- Host: GitHub
- URL: https://github.com/arpandaze/tms-captcha
- Owner: arpandaze
- License: mit
- Created: 2021-08-29T03:34:41.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2025-02-19T14:57:25.000Z (over 1 year ago)
- Last Synced: 2025-02-19T15:43:42.712Z (over 1 year ago)
- Topics: captcha-solver, nepse, tms
- Language: TypeScript
- Homepage:
- Size: 1.77 MB
- Stars: 11
- Watchers: 2
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
TMS Captcha Solver
Extension for chromium based browsers to solve and autofill captchas on NEPSE TMS sites.
Demo

# Installation
* Download `TMSCaptcha_v*.zip` from releases page.
* Go to `chrome://extensions/` in your browser and enable developer mode.
* Drag and drop the zip in extensions page.
# Building:
* Clone the repository!
* Install the dependencies with: `yarn install`
* Build Chrome version: `yarn build:chrome`
* Build Firefox version: `yarn build:firefox`
* Build both versions: `yarn build:all`
# Publishing to Firefox Add-ons:
To publish the extension to Firefox Add-ons:
1. Get your API credentials from [AMO's API Keys page](https://addons.mozilla.org/en-US/developers/addon/api/key/)
2. Set environment variables:
```bash
export MOZILLA_JWT_ISSUER="your-jwt-issuer"
export MOZILLA_JWT_SECRET="your-jwt-secret"
```
3. Run the publish command:
```bash
yarn publish:firefox
```
The extension will be built, signed, and submitted to Firefox Add-ons for review.