hCaptcha Solver
Solves hCAPTCHA challenges using deep neural networks.
Wat is hCaptcha Solver?
hCaptcha Solver is een Chrome-extensie ontwikkeld door https://gpudrops.com, en de belangrijkste functie is "Solves hCAPTCHA challenges using deep neural networks.".
Extensie Screenshots
Download het CRX-bestand van de extensie hCaptcha Solver
Download hCaptcha Solver-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
**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.
Basisinformatie over de Extensie
Naam | hCaptcha Solver |
ID | lfpfbgeoodeejmjdlfjbfjkemjlblijg |
Officiële URL | https://chromewebstore.google.com/detail/hcaptcha-solver/lfpfbgeoodeejmjdlfjbfjkemjlblijg |
Beschrijving | Solves hCAPTCHA challenges using deep neural networks. |
Bestandsgrootte | 31.43 MB |
Aantal Installaties | 8,441 |
Huidige Versie | 1.3.1 |
Laatst Bijgewerkt | 2022-10-03 |
Publicatiedatum | 2022-01-09 |
Beoordeling | 3.03/5 Totaal 59 Beoordelingen |
Ontwikkelaar | https://gpudrops.com |
[email protected] | |
Betalingswijze | free |
URL van de Privacybeleid Pagina | https://www.nopecha.com/privacy |
Ondersteunde Talen | 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", " |