首先安装扩展,扩展下载地址为:
https://chrome.google.com/webstore/detail/nocaptcha-solver/kkphlbgphimpedeckcepigahenlmpggc?utm_source=ext_sidebar&hl=zh-CN
点我下载
安装好扩展后,将NoCaptcha Solver扩展固定在扩展栏中(方便操作)后登录自己平台的账号。token为消费的令牌,user name 为平台登录账号,即邮箱地址。


点击管理扩展程序或者浏览器输入chrome://extensions/进入扩展程序页面, 点击Service Worker

点击后会打开开发者工具,此时切换至network面板。

打开需要破解的网站,如https://democaptcha.com/demo-form-eng/recaptcha-2.html 扩展会自动开始破解reCaptcha或者hCaptcha。


此时,在network栏里,则可获取到验证码需要的所有参数。注意无需理会extra对象,也不要提交该参数。

{
    "sitekey": "6LfGqN0UAAAAAFdGo4OSj5Awi8hM_9kmR7VfXUP2",
    "referer": "https://democaptcha.com/demo-form-eng/recaptcha-2.html",
    "title": "reCAPTCHA 2 demo form | AntiCaptcha plugin demo forms",
    "size": "normal",
    "action": null,
    "s": null,
    "extra": {
        "origin": "chrome-plugin",
        "cb": null
    }
}
至此,破解所需要的参数就一次性全部获取到了,hCaptcha的操作也是和reCaptcha一摸一样的,在此就不再赘述了。