Firefox 浏览器附加组件
  • 扩展
  • 主题
    • 适用于 Firefox
    • 字典和语言包
    • 其他浏览器网站
    • 适用于 Android 的附加组件
登录
附加组件图标

FastCaptcha Auto Solver 版本历史 - 4 个版本

FastCaptcha Auto Solver 作者: Bijaya Kumar

评分 5 / 5
5 / 5 星
5
1
4
0
3
0
2
0
1
0
FastCaptcha Auto Solver 版本历史 - 4 个版本
  • 小心旧版本!显示这些版本是为了测试和参考目的。您应该始终使用附加组件的最新版本。

  • 最新版本

    版本 1.2.2

    发布于 2026年6月27日 - 39.63 KB
    适用于 firefox 121.0 及更高版本
    ✅ 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)

    源代码遵循 保留所有权利 发布

    下载 Firefox 并安装扩展
    下载文件
  • 较早版本

    版本 1.2.1

    发布于 2026年6月26日 - 39.37 KB
    适用于 firefox 121.0 及更高版本
    🔍 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.

    源代码遵循 保留所有权利 发布

    下载文件
  • 版本 1.1.0

    发布于 2026年4月10日 - 37.88 KB
    适用于 firefox 121.0 及更高版本
    now you can use the username and password to login in the extension

    源代码遵循 保留所有权利 发布

    下载文件
  • 版本 1.0.2

    发布于 2026年3月31日 - 36.48 KB
    适用于 firefox 121.0 及更高版本

    源代码遵循 保留所有权利 发布

    下载文件
转至 Mozilla 主页

附加组件

  • 关于
  • Firefox 附加组件博客
  • 扩展工坊
  • 开发者中心
  • 开发者政策
  • 社区博客
  • 论坛
  • 报告缺陷
  • 评价指南

下载

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

最新版本

  • Nightly
  • Beta

商用版 Firefox

  • Enterprise

社区

  • Connect
  • Contribute
  • Developer

关注

  • Instagram
  • YouTube
  • TikTok
  • Bluesky
  • Podcast
  • 隐私
  • Cookie
  • 法律

除非另有注明,否则本网站上的内容可按知识共享 署名-相同方式共享 3.0 或更新版本使用。