hCaptcha Solver
Solves hCAPTCHA challenges using deep neural networks.
O que é hCaptcha Solver?
hCaptcha Solver é uma extensão do Chrome desenvolvida por https://gpudrops.com, e sua principal característica é "Solves hCAPTCHA challenges using deep neural networks.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão hCaptcha Solver
Baixe arquivos de extensão hCaptcha Solver no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
**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.
Informações Básicas da Extensão
Nome | hCaptcha Solver |
ID | lfpfbgeoodeejmjdlfjbfjkemjlblijg |
URL Oficial | https://chromewebstore.google.com/detail/hcaptcha-solver/lfpfbgeoodeejmjdlfjbfjkemjlblijg |
Descrição | Solves hCAPTCHA challenges using deep neural networks. |
Tamanho do Arquivo | 31.43 MB |
Contagem de Instalações | 8,441 |
Versão Atual | 1.3.1 |
Última Atualização | 2022-10-03 |
Data de Publicação | 2022-01-09 |
Classificação | 3.03/5 Total de 59 Avaliações |
Desenvolvedor | https://gpudrops.com |
[email protected] | |
Tipo de Pagamento | free |
URL da Página de Política de Privacidade | https://www.nopecha.com/privacy |
Idiomas Suportados | 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", " |