hCaptcha Solver
Solves hCAPTCHA challenges using deep neural networks.
What is hCaptcha Solver?
hCaptcha Solver is a Chrome extension developed by https://gpudrops.com, and its main feature is "Solves hCAPTCHA challenges using deep neural networks.".
Extension Screenshots
Download hCaptcha Solver Extension CRX File
Download hCaptcha Solver extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
**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.
Extension Basic Information
Name | hCaptcha Solver |
ID | lfpfbgeoodeejmjdlfjbfjkemjlblijg |
Official URL | https://chromewebstore.google.com/detail/hcaptcha-solver/lfpfbgeoodeejmjdlfjbfjkemjlblijg |
Description | Solves hCAPTCHA challenges using deep neural networks. |
File Size | 31.43 MB |
Installation Count | 8,441 |
Current Version | 1.3.1 |
Last Updated | 2022-10-03 |
Publish Date | 2022-01-09 |
Rating | 3.03/5 Total 59 Ratings |
Developer | https://gpudrops.com |
[email protected] | |
Payment Type | free |
Privacy Policy Page URL | https://www.nopecha.com/privacy |
Supported Languages | 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", " |