hCaptcha Solver
Solves hCAPTCHA challenges using deep neural networks.
Co to jest hCaptcha Solver?
hCaptcha Solver to rozszerzenie Chrome opracowane przez https://gpudrops.com, a jego główną funkcją jest „Solves hCAPTCHA challenges using deep neural networks.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia hCaptcha Solver
Pobierz pliki rozszerzeń hCaptcha Solver w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
**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.
Podstawowe informacje o rozszerzeniu
Nazwa | hCaptcha Solver |
ID | lfpfbgeoodeejmjdlfjbfjkemjlblijg |
Oficjalny URL | https://chromewebstore.google.com/detail/hcaptcha-solver/lfpfbgeoodeejmjdlfjbfjkemjlblijg |
Opis | Solves hCAPTCHA challenges using deep neural networks. |
Rozmiar pliku | 31.43 MB |
Liczba instalacji | 8,441 |
Aktualna Wersja | 1.3.1 |
Ostatnia Aktualizacja | 2022-10-03 |
Data Publikacji | 2022-01-09 |
Ocena | 3.03/5 Łącznie 59 Oceny |
Deweloper | https://gpudrops.com |
[email protected] | |
Typ Płatności | free |
Adres URL Strony Polityki Prywatności | https://www.nopecha.com/privacy |
Obsługiwane Języki | 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", " |