hCaptcha Solver
Solves hCAPTCHA challenges using deep neural networks.
Qu'est-ce que hCaptcha Solver ?
hCaptcha Solver est une extension Chrome développée par https://gpudrops.com, et sa fonction principale est "Solves hCAPTCHA challenges using deep neural networks.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension hCaptcha Solver
Téléchargez les fichiers d'extension hCaptcha Solver au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
**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.
Informations de Base sur l'Extension
Nom | hCaptcha Solver |
ID | lfpfbgeoodeejmjdlfjbfjkemjlblijg |
URL Officiel | https://chromewebstore.google.com/detail/hcaptcha-solver/lfpfbgeoodeejmjdlfjbfjkemjlblijg |
Description | Solves hCAPTCHA challenges using deep neural networks. |
Taille du Fichier | 31.43 MB |
Nombre d'Installations | 8,441 |
Version Actuelle | 1.3.1 |
Dernière Mise à Jour | 2022-10-03 |
Date de Publication | 2022-01-09 |
Évaluation | 3.03/5 Total 59 Évaluations |
Développeur | https://gpudrops.com |
[email protected] | |
Type de Paiement | free |
URL de la Page de Politique de Confidentialité | https://www.nopecha.com/privacy |
Langues Prises en Charge | 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", " |