hCaptcha Solver
Solves hCAPTCHA challenges using deep neural networks.
什么是hCaptcha Solver?
hCaptcha Solver是由https://gpudrops.com开发的Chrome扩展程序,该扩展的主要功能是“Solves hCAPTCHA challenges using deep neural networks.”。
扩展截图
下载hCaptcha Solver扩展crx文件
下载hCaptcha Solver扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
**IMPORTANT**
We have released a newer version! Search the webstore for "NopeCHA"
Download here:
https://chrome.google.com/webstore/detail/dknlfmjaanfblgfdfebhijalfmhmjjjo
This extension is no longer updated. Please download NopeCHA instead. 扩展基本信息
| 名称 | |
| ID | lfpfbgeoodeejmjdlfjbfjkemjlblijg |
| 官方URL | https://chromewebstore.google.com/detail/hcaptcha-solver/lfpfbgeoodeejmjdlfjbfjkemjlblijg |
| 简介 | Solves hCAPTCHA challenges using deep neural networks. |
| 文件大小 | 31.43 MB |
| 安装次数 | 8,441 |
| 当前版本 | 1.3.1 |
| 更新时间 | 2022-10-03 |
| 上架时间 | 2022-01-09 |
| 评分 | 3.03/5 共59次评分 |
| 开发者 | https://gpudrops.com |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 隐私政策页面URL | https://www.nopecha.com/privacy |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "hCaptcha Solver",
"description": "Solves hCAPTCHA challenges using deep neural networks.",
"version": "1.3.1",
"manifest_version": 2,
"background": {
"scripts": [
"worker.js"
],
"persistent": true
},
"web_accessible_resources": [
"model_cs\/*",
"model_mn\/*"
],
"content_scripts": [
{
"js": [
"content\/jimp.js",
"content\/tf.js",
"content\/model_cs.js",
"content\/model_mn.js",
"content\/hcaptcha.js"
],
"matches": [
"https:\/\/*.hcaptcha.com\/captcha\/*"
],
"all_frames": true,
"run_at": "document_start"
}
],
"browser_action": {
"default_icon": {
"16": "\/images\/icon_16.png",
"32": "\/images\/icon_32.png",
"48": "\/images\/icon_48.png",
"128": "\/images\/icon_128.png"
},
"default_title": "Captcha solver"
},
"icons": {
"16": "\/images\/icon_16.png",
"32": "\/images\/icon_32.png",
"48": "\/images\/icon_48.png",
"128": "\/images\/icon_128.png"
},
"permissions": [
"cookies",
"storage",
"webRequest",
"webRequestBlocking",
" | |