Firefox Browser Add-ons
  • Extensions
  • Themes
    • for Firefox
    • Dictionaries & Language Packs
    • Other Browser Sites
    • Add-ons for Android
Log in
Add-on icon

FastCaptcha Auto Solver version history - 4 versions

FastCaptcha Auto Solver by Bijaya Kumar

Rated 5 out of 5
5 Stars out of 5
5
1
4
0
3
0
2
0
1
0
FastCaptcha Auto Solver version history - 4 versions
  • Be careful with old versions! These versions are displayed for testing and reference purposes.You should always use the latest version of an add-on.

  • Latest version

    Version 1.2.2

    Released Jun 27, 2026 - 39.63 KB
    Works with firefox 121.0 and later
    ✅ Firefox-only fix done — v1.2.2
    d:\FastCaptchaWeb\fastcaptcha\fastcaptcha-firefox.zip is ready to upload. Chrome (fastcaptcha-chrome.zip) stays untouched at v1.2.1.

    🎯 What's different in Firefox v1.2.2
    Added 2 hard-reject rules at the top of scoreImage() that fire BEFORE any scoring math:

    // Rule 1: explicit refresh/reload/reset keyword in src or alt → instant reject
    if (HARD_REJECT_REGEX.test(src) || HARD_REJECT_REGEX.test(alt)) {
    return -Infinity;
    }

    // Rule 2: any .svg image → instant reject
    if (isSvgImage(src)) {
    return -Infinity;
    }
    For your specific case:

    Image Decision
    <img src="/static/media/refresh.69dd...svg" alt="refresh" ...> Rule 1 fires (src has "refresh") AND Rule 2 fires (it's .svg) → -Infinity
    <img class="captchaImg" src="data:image/jpg;base64,..." alt="captcha" ...> Passes both rules → scored normally → ~+520
    There's now no possible way for the refresh icon to win — even if my scoring logic had bugs, the hard-reject return -Infinity happens before any of it runs.

    Also bumped the positive-keyword bonus from +300 to +400 for extra margin.

    📤 Upload
    addons.mozilla.org → Developer Hub → FastCaptcha → Upload new version → fastcaptcha-firefox.zip (v1.2.2)

    Source code released under All Rights Reserved

    Download Firefox and get the extension
    Download file
  • Older versions

    Version 1.2.1

    Released Jun 26, 2026 - 39.37 KB
    Works with firefox 121.0 and later
    🔍 Key improvements
    Aspect ratio scoring — captchas are wide rectangles (2:1 to 5:1), icons are squares. This alone catches most edge cases.
    data: URL bonus — captchas often inline as base64 to avoid CDN caching, icons rarely do.
    Onclick/onmousedown attrs are now scanned — catches refresh icons that have captchaReset(...) handlers but no "refresh" in src.
    Word boundary \b in negative regex — prevents false positives (e.g., "checkbox" no longer matches "check").
    Icon-size penalty doubled — tiny images (< 50×50) lose 150 points now.

    Source code released under All Rights Reserved

    Download file
  • Version 1.1.0

    Released Apr 10, 2026 - 37.88 KB
    Works with firefox 121.0 and later
    now you can use the username and password to login in the extension

    Source code released under All Rights Reserved

    Download file
  • Version 1.0.2

    Released Mar 31, 2026 - 36.48 KB
    Works with firefox 121.0 and later

    Source code released under All Rights Reserved

    Download file
Go to Mozilla’s homepage

Add-ons

  • About
  • Firefox Add-ons Blog
  • Extension Workshop
  • Developer Hub
  • Developer Policies
  • Community Blog
  • Forum
  • Report a bug
  • Review Guide

Download

  • Download Firefox
  • Windows
  • macOS
  • iOS
  • Android
  • Linux
  • All

Latest Builds

  • Nightly
  • Beta

Firefox for Business

  • Enterprise

Community

  • Connect
  • Contribute
  • Developer

Follow

  • Instagram
  • YouTube
  • TikTok
  • Bluesky
  • Podcast
  • Privacy
  • Cookies
  • Legal

Except where otherwise noted, content on this site is licensed under the Creative Commons Attribution Share-Alike License v3.0 or any later version.